You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
|
|
include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
|
|
unset (errors)
|
|
|
|
set (reference "../../a/d")
|
|
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f")
|
|
set(output "$<PATH:ABSOLUTE_PATH,../../a/d,/x/y/a/f>")
|
|
if (NOT output STREQUAL reference)
|
|
list (APPEND errors "'${output}' instead of '${reference}'")
|
|
endif()
|
|
|
|
set (reference "../../a/d")
|
|
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f" NORMALIZE)
|
|
set(output "$<PATH:ABSOLUTE_PATH,NORMALIZE,../../a/d,/x/y/a/f>")
|
|
if (NOT output STREQUAL reference)
|
|
list (APPEND errors "'${output}' instead of '${reference}'")
|
|
endif()
|
|
|
|
set (reference "/a/d/../e")
|
|
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f")
|
|
set(output "$<PATH:ABSOLUTE_PATH,/a/d/../e,/x/y/a/f>")
|
|
if (NOT output STREQUAL reference)
|
|
list (APPEND errors "'${output}' instead of '${reference}'")
|
|
endif()
|
|
|
|
set (reference "/a/d/../e")
|
|
cmake_path(ABSOLUTE_PATH reference BASE_DIRECTORY "/x/y/a/f" NORMALIZE)
|
|
set(output "$<PATH:ABSOLUTE_PATH,NORMALIZE,/a/d/../e,/x/y/a/f>")
|
|
if (NOT output STREQUAL reference)
|
|
list (APPEND errors "'${output}' instead of '${reference}'")
|
|
endif()
|
|
|
|
|
|
check_errors("PATH:ABSOLUTE_PATH" ${errors})
|