5 lines
83 B
CMake
5 lines
83 B
CMake
|
set(listvar a b c d e)
|
||
|
|
||
|
list(GET listvar 0 2junk out)
|
||
|
message("GET: -->${out}<--")
|