mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 21:00:17 -06:00
Extend the genex added by commit ca6ba3fee5 (Genex: Add a SHELL_PATH
expression, 2015-09-24, v3.4.0-rc1~37^2) to accept a `;`-list of paths,
convert them all, and generate a list separated by the native shell
`PATH``` separator.
34 lines
947 B
CMake
34 lines
947 B
CMake
include(${CMAKE_CURRENT_LIST_DIR}/check-common.cmake)
|
|
|
|
if(msys1_prefix)
|
|
string(REPLACE "${msys1_prefix}" "" test_shell_path ${test_shell_path})
|
|
endif()
|
|
|
|
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()
|
|
if(WIN32)
|
|
if(CMAKE_GENERATOR STREQUAL "MSYS Makefiles" AND NOT msys1_prefix)
|
|
check(test_shell_path2 [[/c/shell/path:/d/another/path]])
|
|
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()
|
|
|
|
check(if_1 "a")
|
|
check(if_2 "b")
|
|
check(if_3 "b")
|
|
check(if_4 "a")
|