2023-07-02 19:51:09 +02:00

21 lines
476 B
CMake

include ("${RunCMake_SOURCE_DIR}/check_errors.cmake")
unset (errors)
set(listvar a b c d)
list(GET listvar 0 2 reference)
set (output "$<LIST:GET,a;b;c;d,0,2>")
if (NOT output STREQUAL reference)
list (APPEND errors "returns bad value: ${output}")
endif()
list(GET listvar 0 -3 2 reference)
set (output "$<LIST:GET,a;b;c;d,0,-3,2>")
if (NOT output STREQUAL reference)
list (APPEND errors "returns bad value: ${output}")
endif()
check_errors("LIST:GET..." ${errors})