Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2019-04-20 19:12:00 +0300
committerJanek Bevendorff <janek@jbev.net>2019-04-20 19:12:00 +0300
commit53796a216ebb6269bc199adab4d8e47d2182988a (patch)
tree0aee234d0ce51c233990b4ed6c75d4eccad1221e /cmake
parent219a0f40ff120f1e4beb4b51ab48edb4106e3d2a (diff)
Windows: use winqtdeploy instead of DeplyQt4 from CMake (#3025)
* Ensure Qt dlls find plugins in bundled directory * Reduce complexity of deployment code * Standardize use of CMAKE_BUILD_TYPE_LOWER for more robust comparisons Fixes #3023. Fixes part of #1535.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/CodeCoverage.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/CodeCoverage.cmake b/cmake/CodeCoverage.cmake
index d10791745..f5287b75b 100644
--- a/cmake/CodeCoverage.cmake
+++ b/cmake/CodeCoverage.cmake
@@ -112,7 +112,7 @@ mark_as_advanced(
CMAKE_EXE_LINKER_FLAGS_COVERAGE
CMAKE_SHARED_LINKER_FLAGS_COVERAGE )
-if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
+if(NOT CMAKE_BUILD_TYPE_LOWER STREQUAL "debug")
message(WARNING "Code coverage results with an optimised (non-Debug) build may be misleading")
endif() # NOT CMAKE_BUILD_TYPE STREQUAL "Debug"