diff options
author | Christophe Giboudeaux <christophe@krop.fr> | 2017-08-10 01:44:51 +0200 |
---|---|---|
committer | Christophe Giboudeaux <christophe@krop.fr> | 2017-08-10 01:44:51 +0200 |
commit | ef01c93637e1840ee701673970a371c011e36a40 (patch) | |
tree | 118e3048f59711b02bccbc2457fedf8d665a2e19 | |
parent | 7e7b6da8c66b7ecf1c21f330c31ffe7975259498 (diff) | |
download | extra-cmake-modules-ef01c93637e1840ee701673970a371c011e36a40.tar.gz extra-cmake-modules-ef01c93637e1840ee701673970a371c011e36a40.tar.bz2 |
Fix the fix
-rw-r--r-- | kde-modules/KDECMakeSettings.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kde-modules/KDECMakeSettings.cmake b/kde-modules/KDECMakeSettings.cmake index eecb9ea1..ff5999a1 100644 --- a/kde-modules/KDECMakeSettings.cmake +++ b/kde-modules/KDECMakeSettings.cmake @@ -249,7 +249,7 @@ if(NOT KDE_SKIP_BUILD_SETTINGS) # even without installation. # We do the same under Unix to make it possible to run tests and apps without installing - if (WIN32 OR "${ECM_GLOBAL_FIND_VERSION}" NOT VERSION_LESS "5.38.0") + if (WIN32 OR NOT ("${ECM_GLOBAL_FIND_VERSION}" VERSION_LESS "5.38.0")) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin") |