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
5 lines
94 B
CMake
5 lines
94 B
CMake
function(test1)
|
|
cmake_parse_arguments(PARSE_ARGN pref "" "" "" extra)
|
|
endfunction()
|
|
test1()
|