summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2022-06-03 16:08:37 -0400
committerAllen Winter <allen.winter@kdab.com>2022-06-03 16:08:37 -0400
commit454167da5abfe78bc52cc4e89fa5584754aee87f (patch)
tree8ad186088cb311d9430c482fce9672917b0233a6
parent175abb718bd000413f1db6a82a4ee457d71f8bb4 (diff)
downloadlibical-git-454167da5abfe78bc52cc4e89fa5584754aee87f.tar.gz
cmake/modules/FindBerkeleyDB.cmake - don't print warning message
-rw-r--r--cmake/modules/FindBerkeleyDB.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/FindBerkeleyDB.cmake b/cmake/modules/FindBerkeleyDB.cmake
index 401a36c4..0d83b4ef 100644
--- a/cmake/modules/FindBerkeleyDB.cmake
+++ b/cmake/modules/FindBerkeleyDB.cmake
@@ -92,8 +92,8 @@ else()
if(BerkeleyDB_FIND_REQUIRED)
# If the find_package(BerkeleyDB REQUIRED) was used, fail since we couldn't find the header
message(FATAL_ERROR "Failed to find Berkeley DB's header file \"db.h\"! Try setting \"BerkeleyDB_ROOT_DIR\" when initiating Cmake.")
- elseif(NOT BerkeleyDB_FIND_QUIETLY)
- message(WARNING "Failed to find Berkeley DB's header file \"db.h\"! Try setting \"BerkeleyDB_ROOT_DIR\" when initiating Cmake.")
+ #elseif(NOT BerkeleyDB_FIND_QUIETLY)
+ # message(WARNING "Failed to find Berkeley DB's header file \"db.h\"! Try setting \"BerkeleyDB_ROOT_DIR\" when initiating Cmake.")
endif()
# Set some garbage values to the versions since we didn't find a file to read
set(BerkeleyDB_VERSION_MAJOR "0")