Files
Arha Gatram 97c36916d9 cmake_parse_arguments: Add PARSE_ARGN mode
Introduce a mode similar to `PARSE_ARGV` that avoids needing
to specify the number of normal function arguments.

Closes: #25376
2026-06-01 18:06:25 -04:00

5 lines
94 B
CMake

function(test1)
cmake_parse_arguments(PARSE_ARGN pref "" "" "" extra)
endfunction()
test1()