blob: 41205fa6741b9361a98220edaf5fce3c00642041 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
unset (errors)
cmake_path(SET reference "/x/y/z/../../a/d")
set(output "$<PATH:CMAKE_PATH,/x/y/z/../../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
cmake_path(SET reference NORMALIZE "/x/y/z/../../a/d")
set(output "$<PATH:CMAKE_PATH,NORMALIZE,/x/y/z/../../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
if (WIN32)
cmake_path(SET reference "/x\\y/z\\..\\../a/d")
set(output "$<PATH:CMAKE_PATH,/x\y/z\..\../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
cmake_path(SET reference NORMALIZE "/x\\y/z\\..\\../a/d")
set(output "$<PATH:CMAKE_PATH,NORMALIZE,/x\y/z\..\../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
cmake_path(SET reference "//?/c:/x\\y/z\\..\\../a/d")
set(output "$<PATH:CMAKE_PATH,//?/c:/x\y/z\..\../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
cmake_path(SET reference NORMALIZE "//?/c:/x\\y/z\\..\\../a/d")
set(output "$<PATH:CMAKE_PATH,NORMALIZE,//?/c:/x\y/z\..\../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
cmake_path(SET reference "\\\\?\\UNC/host/x\\y/z\\..\\../a/d")
set(output "$<PATH:CMAKE_PATH,\\?\UNC/host/x\y/z\..\../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
cmake_path(SET reference NORMALIZE "\\\\?\\UNC\\host/x\\y/z\\..\\../a/d")
set(output "$<PATH:CMAKE_PATH,NORMALIZE,\\?\UNC/host/x\y/z\..\../a/d>")
if (NOT output STREQUAL reference)
list (APPEND errors "'${output}' instead of '${reference}'")
endif()
endif()
check_errors("PATH:CMAKE_PATH" ${errors})
|