diff options
author | flow <thiagodonato300@gmail.com> | 2022-04-16 10:10:13 -0300 |
---|---|---|
committer | flow <thiagodonato300@gmail.com> | 2022-04-16 10:10:13 -0300 |
commit | be82f4db9eafa63c7497c2abe3449b83b6babd00 (patch) | |
tree | 5b1823182dfd2592156fdb1da74439cc35dc7b3e /CMakeLists.txt | |
parent | db7cb125518e85f555b8816442b2ce2db4648cd8 (diff) | |
download | PrismLauncher-be82f4db9eafa63c7497c2abe3449b83b6babd00.tar.gz PrismLauncher-be82f4db9eafa63c7497c2abe3449b83b6babd00.tar.bz2 PrismLauncher-be82f4db9eafa63c7497c2abe3449b83b6babd00.zip |
libs: Don't force bundled libs
Now that QuaZip 1.3 is released, packages from package managers can
include the patch needed for PolyMC, so we can use the users system
libraries if available.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1350a3ba..2c36d847 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -107,8 +107,7 @@ set(Launcher_DISCORD_URL "https://discord.gg/Z52pwxWCHP" CACHE STRING "URL for t set(Launcher_SUBREDDIT_URL "https://www.reddit.com/r/PolyMCLauncher/" CACHE STRING "URL for the subreddit.") # Builds -# 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_FORCE_BUNDLED_LIBS OFF 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") |