diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-09 13:51:05 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-09 13:51:05 +0900 |
commit | 763a7b3ed8b7e4562f10dc3d7c53ac35707ce5cb (patch) | |
tree | 010788d7d63b21c60262c233c8d10beb5fa981c4 /CMakeLists.txt | |
parent | 005907225b376335545744e78a3bdfaec5ad0f90 (diff) | |
download | libquotient-763a7b3ed8b7e4562f10dc3d7c53ac35707ce5cb.tar.gz libquotient-763a7b3ed8b7e4562f10dc3d7c53ac35707ce5cb.zip |
Strictly require Qt libraries
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 844b7694..e649f24d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,9 +19,9 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) "MinSizeRel" "RelWithDebInfo") endif() -find_package(Qt5Core 5.2.0) # For JSON (de)serialization -find_package(Qt5Network 5.2.0) # For networking -find_package(Qt5Gui 5.2.0) # For userpics +find_package(Qt5Core 5.2.0 REQUIRED) # For JSON (de)serialization +find_package(Qt5Network 5.2.0 REQUIRED) # For networking +find_package(Qt5Gui 5.2.0 REQUIRED) # For userpics message( STATUS ) message( STATUS "================================================================================" ) |