diff options
author | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-24 18:22:35 +0100 |
---|---|---|
committer | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-03-22 13:51:21 +0100 |
commit | f01bf10dc511268ead551a191a6a3211c006ba44 (patch) | |
tree | 29cad9dc812def321053bf3436f38b535e644f86 /CMakeLists.txt | |
parent | ce867d91698a9414ff7238e902215e9b76d10459 (diff) | |
download | MultiMC-f01bf10dc511268ead551a191a6a3211c006ba44.tar MultiMC-f01bf10dc511268ead551a191a6a3211c006ba44.tar.gz MultiMC-f01bf10dc511268ead551a191a6a3211c006ba44.tar.lz MultiMC-f01bf10dc511268ead551a191a6a3211c006ba44.tar.xz MultiMC-f01bf10dc511268ead551a191a6a3211c006ba44.zip |
Implement Keyring system base
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ae3e784..6f0204c3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,7 @@ find_package(ZLIB REQUIRED) # Add quazip add_subdirectory(quazip) +include_directories(quazip) # Add bspatch add_subdirectory(patchlib) @@ -260,6 +261,12 @@ libUtil libSettings libMultiMC libGroupView ${MultiMC_LINK_ADDITIONAL_LIBS}) ADD_DEPENDENCIES(MultiMC MultiMCLauncher libUtil libSettings libMultiMC libGroupView) +IF(DEFINED MMC_KEYRING_TEST) +# test.cpp +ADD_EXECUTABLE(Test test.cpp) +QT5_USE_MODULES(Test Core) +TARGET_LINK_LIBRARIES(Test libmmcutil libmmcsettings) +ENDIF() ################################ INSTALLATION AND PACKAGING ################################ # use QtCreator's QTDIR var |