mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Introduce a mode similar to `PARSE_ARGV` that avoids needing to specify the number of normal function arguments. Closes: #25376
6 lines
104 B
CMake
6 lines
104 B
CMake
function(test3)
|
|
set(ARGC bad)
|
|
cmake_parse_arguments(PARSE_ARGN pref "" "" "")
|
|
endfunction()
|
|
test3()
|