From c2ab0d8e29603ef848b635e8051435364dfc59a5 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 7 Aug 2021 17:09:24 +0200 Subject: [PATCH] Document `CMAKE_FIND_DEBUG_MODE` --- CMakeLists.txt | 2 +- doc/buildvariables.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c395dc..29a5194 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}") set(META_APP_DESCRIPTION "Useful C++ classes and routines such as argument parser, IO and conversion utilities") set(META_VERSION_MAJOR 5) set(META_VERSION_MINOR 11) -set(META_VERSION_PATCH 0) +set(META_VERSION_PATCH 1) # find required 3rd party libraries include(3rdParty) diff --git a/doc/buildvariables.md b/doc/buildvariables.md index bbc29cb..3dcb677 100644 --- a/doc/buildvariables.md +++ b/doc/buildvariables.md @@ -19,6 +19,8 @@ * `CMAKE_FIND_LIBRARY_SUFFIXES`: sets the library suffixes the build script will consider, e.g. set to `.a;.lib` to prefer static Windows libraries or to `.dll;.dll.a` to prefer shared Windows libraries +* `CMAKE_FIND_DEBUG_MODE=ON/OFF` or `--debug-find` flag: whether verbose debug + output for finding libraries should be enabled * variables provided by [GNUInstallDirs](https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html) ### Custom variables