mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 09:54:15 +00:00
121a036f73
Treat an empty list as a list with no valid bounds and return an error message indicating that any given indices are out-of-bounds.
7 lines
178 B
CMake
7 lines
178 B
CMake
set(nosuchlist "")
|
|
list(REMOVE_AT nosuchlist 0)
|
|
if (NOT DEFINED nosuchlist OR NOT nosuchlist STREQUAL "")
|
|
message(FATAL_ERROR
|
|
"list(REMOVE_AT) modified our list")
|
|
endif ()
|