You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
480 B
15 lines
480 B
9 years ago
|
# wrong argument count
|
||
|
cmake_parse_arguments()
|
||
|
cmake_parse_arguments(prefix OPT)
|
||
|
cmake_parse_arguments(prefix OPT SINGLE)
|
||
|
cmake_parse_arguments(prefix OPT SINGLE MULTI) # not an error
|
||
|
|
||
|
# duplicate keywords
|
||
|
cmake_parse_arguments(prefix "OPT;OPT" "" "")
|
||
|
cmake_parse_arguments(prefix "" "OPT;OPT" "")
|
||
|
cmake_parse_arguments(prefix "" "" "OPT;OPT")
|
||
|
|
||
|
cmake_parse_arguments(prefix "OPT" "OPT" "")
|
||
|
cmake_parse_arguments(prefix "" "OPT" "OPT")
|
||
|
cmake_parse_arguments(prefix "OPT" "" "OPT")
|