summaryrefslogtreecommitdiff
path: root/Tests/GeneratorExpression/check-part4.cmake
blob: a7e09445efff9a6b25a197e988e7467764710b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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")