ca6ba3fee5
Some commands on Windows do not understand forward slash paths and require backslashes. In order to help projects generate shell invocations of such commands, provide a generator expression to convert paths to the shell-preferred path format for the current generator. This will allow custom commands to generate paths the same way CMake does for compiler command invocations.
16 lines
445 B
CMake
16 lines
445 B
CMake
include(${CMAKE_CURRENT_LIST_DIR}/check-common.cmake)
|
|
|
|
string(REPLACE ${path_prefix} "" test_shell_path ${test_shell_path})
|
|
|
|
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()
|