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

6 lines
104 B
CMake

function(test3)
set(ARGC bad)
cmake_parse_arguments(PARSE_ARGN pref "" "" "")
endfunction()
test3()