mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
Add a `COMMAND_EXPAND_LISTS` option to the `add_test` command to cause `;`-separated lists produced by generator expressions to be expanded into multiple arguments. The `add_custom_command` command already has such an option. Fixes: #17284
9 lines
123 B
CMake
9 lines
123 B
CMake
include(CTest)
|
|
|
|
add_test(
|
|
NAME MultipleExpandOptions
|
|
COMMAND /bin/true
|
|
COMMAND_EXPAND_LISTS
|
|
COMMAND_EXPAND_LISTS
|
|
)
|