diff options
author | David Faure <faure@kde.org> | 2020-12-06 13:10:43 +0100 |
---|---|---|
committer | David Faure <faure@kde.org> | 2020-12-06 13:10:57 +0100 |
commit | 22552a8a2758f54d5538b4967a8e433d972b27c0 (patch) | |
tree | 3ddac4c10632b246a017a72c34135a17fa6f0507 /modules | |
parent | a99a6cd7cb8927b6741995070f207de84d7ee6ea (diff) | |
download | extra-cmake-modules-22552a8a2758f54d5538b4967a8e433d972b27c0.tar.gz extra-cmake-modules-22552a8a2758f54d5538b4967a8e433d972b27c0.tar.bz2 |
Attempt to fix kdav & purpose autotests on Windows CI
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ECMAddTests.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ECMAddTests.cmake b/modules/ECMAddTests.cmake index 4bc7fb8b..8091ec46 100644 --- a/modules/ECMAddTests.cmake +++ b/modules/ECMAddTests.cmake @@ -94,7 +94,7 @@ function(ecm_add_test) target_link_libraries(${_targetname} ${ARG_LINK_LIBRARIES}) ecm_mark_as_test(${_targetname}) if (CMAKE_LIBRARY_OUTPUT_DIRECTORY) - if(CMAKE_HOST_SYSTEM MATCHES "Windows") + if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") set(PATHSEP ";") else() # e.g. Linux set(PATHSEP ":") |