13 lines
259 B
CMake
13 lines
259 B
CMake
function(foo arg1 arg2)
|
|
math(EXPR last "${ARGC} - 1")
|
|
foreach(i RANGE 0 ${last})
|
|
message("[${ARGV${i}}]")
|
|
endforeach()
|
|
endfunction()
|
|
|
|
message("foo(...)")
|
|
foo("a;b" "c;d")
|
|
|
|
message("cmake_language(CALL foo ...)")
|
|
cmake_language(CALL foo "a;b" "c;d")
|