diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-01-27 12:52:58 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-01-31 21:40:59 +0100 |
commit | 71516e6c728a6b7429c04f297f6b0f3710bfa3c3 (patch) | |
tree | 83ab65fb519a184d423cf3855a52f8dad24c35f4 /CMakeLists.txt | |
parent | 88686ef06515e9aacabf0ad0cafdba30ad47c85a (diff) | |
download | PrismLauncher-71516e6c728a6b7429c04f297f6b0f3710bfa3c3.tar.gz PrismLauncher-71516e6c728a6b7429c04f297f6b0f3710bfa3c3.tar.bz2 PrismLauncher-71516e6c728a6b7429c04f297f6b0f3710bfa3c3.zip |
fix: set Launcher_FORCE_BUNDLED_LIBS=on by default
We need to wait for a new QuaZip release to become widely available, until we can turn this off again
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 707268f4..c4e7046a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,7 +81,8 @@ set(Launcher_DISCORD_URL "https://discord.gg/Z52pwxWCHP" CACHE STRING "URL for t set(Launcher_SUBREDDIT_URL "" CACHE STRING "URL for the subreddit.") # Builds -set(Launcher_FORCE_BUNDLED_LIBS OFF CACHE BOOL "Prevent using system libraries, if they are available as submodules") +# TODO: Launcher_FORCE_BUNDLED_LIBS should be off in the future, but as of QuaZip 1.2, we can't do that yet. +set(Launcher_FORCE_BUNDLED_LIBS ON CACHE BOOL "Prevent using system libraries, if they are available as submodules") set(Launcher_QT_VERSION_MAJOR "5" CACHE STRING "Major Qt version to build against") |