diff options
author | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-05-23 17:27:35 -0400 |
---|---|---|
committer | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-05-23 17:27:35 -0400 |
commit | fce5c575480c88f81f325f3759889d0cde9a28e0 (patch) | |
tree | fbd292171247f9a8ccb3d771ffa68ed5bf3ddd80 | |
parent | dca4ea5ceaa30f1285570d2bf32ea112118b9204 (diff) | |
download | PrismLauncher-fce5c575480c88f81f325f3759889d0cde9a28e0.tar.gz PrismLauncher-fce5c575480c88f81f325f3759889d0cde9a28e0.tar.bz2 PrismLauncher-fce5c575480c88f81f325f3759889d0cde9a28e0.zip |
Silence CMake QuaZip not found warnings
These are expected most of the time, and thus just noise.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e2635c3f..fcc2512d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -143,7 +143,7 @@ if(Launcher_QT_VERSION_MAJOR EQUAL 5) find_package(Qt5 REQUIRED COMPONENTS Core Widgets Concurrent Network Test Xml) if(NOT Launcher_FORCE_BUNDLED_LIBS) - find_package(QuaZip-Qt5 1.3) + find_package(QuaZip-Qt5 1.3 QUIET) endif() if (NOT QuaZip-Qt5_FOUND) set(QUAZIP_QT_MAJOR_VERSION ${QT_VERSION_MAJOR} CACHE STRING "Qt version to use (4, 5 or 6), defaults to ${QT_VERSION_MAJOR}" FORCE) |