cmake/Tests/GeneratorExpression/check-part4.cmake

39 lines
1.1 KiB
CMake
Raw Normal View History

2015-11-17 17:22:37 +01:00
include(${CMAKE_CURRENT_LIST_DIR}/check-common.cmake)
2019-11-11 23:01:05 +01:00
if(msys1_prefix)
string(REPLACE "${msys1_prefix}" "" test_shell_path ${test_shell_path})
endif()
2015-11-17 17:22:37 +01:00
if(WIN32)
if(CMAKE_GENERATOR STREQUAL "MSYS Makefiles")
check(test_shell_path [[/c/shell/path]])
elseif(CMAKE_GENERATOR STREQUAL "Unix Makefiles")
check(test_shell_path [[c:/shell/path]])
else()
check(test_shell_path [[c:\shell\path]])
endif()
else()
check(test_shell_path [[/shell/path]])
endif()
2019-11-11 23:01:05 +01:00
if(WIN32)
2023-05-23 16:38:00 +02:00
if(CMAKE_GENERATOR STREQUAL "MSYS Makefiles")
if(msys1_prefix)
# The comparison was done at generate time with the STREQUAL genex.
check(test_shell_path2 [[1]])
else()
check(test_shell_path2 [[/c/shell/path:/d/another/path]])
endif()
2019-11-11 23:01:05 +01:00
elseif(CMAKE_GENERATOR STREQUAL "Unix Makefiles")
check(test_shell_path2 [[c:/shell/path;d:/another/path]])
else()
check(test_shell_path2 [[c:\shell\path;d:\another\path]])
endif()
else()
check(test_shell_path2 [[/shell/path:/another/path]])
endif()
2017-04-14 19:02:05 +02:00
check(if_1 "a")
check(if_2 "b")
check(if_3 "b")
check(if_4 "a")