Split MultiMC up into a few separate libraries.
Fixed plugin system. Tons of other stuff...
This commit is contained in:
parent
f71479ec33
commit
dd2e836b4c
42 changed files with 404 additions and 300 deletions
|
@ -10,22 +10,40 @@ find_package(Qt5Network REQUIRED)
|
|||
include_directories(${Qt5Base_INCLUDE_DIRS})
|
||||
include_directories(${Qt5Network_INCLUDE_DIRS})
|
||||
|
||||
# Include MultiMC's headers.
|
||||
include_directories(../../)
|
||||
# Include the Java library.
|
||||
include_directories(${CMAKE_SOURCE_DIR}/java)
|
||||
|
||||
# Include utils library headers.
|
||||
include_directories(${CMAKE_SOURCE_DIR}/libutil/include)
|
||||
|
||||
# Include settings library headers.
|
||||
include_directories(${CMAKE_SOURCE_DIR}/libsettings/include)
|
||||
|
||||
# Include instance library headers.
|
||||
include_directories(${CMAKE_SOURCE_DIR}libinstance/include)
|
||||
|
||||
SET(STDINST_HEADERS
|
||||
stdinstplugin.h
|
||||
stdinstancetype.h
|
||||
stdinstance.h
|
||||
)
|
||||
|
||||
SET(STDINST_SOURCES
|
||||
stdinstplugin.cpp
|
||||
stdinstancetype.cpp
|
||||
stdinstance.cpp
|
||||
)
|
||||
|
||||
add_library(stdinstance SHARED ${STDINST_SOURCES} ${STDINST_HEADERS})
|
||||
|
||||
set_target_properties(stdinstance PROPERTIES PREFIX "")
|
||||
set_target_properties(stdinstance PROPERTIES RUNTIME_OUTPUT_DIRECTORY "..")
|
||||
|
||||
qt5_use_modules(stdinstance Core Network)
|
||||
target_link_libraries(stdinstance quazip patchlib)
|
||||
target_link_libraries(stdinstance
|
||||
quazip
|
||||
patchlib
|
||||
|
||||
# Link the util, settings, and instance libraries.
|
||||
libmmcutil
|
||||
libmmcsettings
|
||||
libmmcinst
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue