mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 18:51:05 -05:00
c8c1dd0d95
Issue: #25106
12 lines
483 B
CMake
12 lines
483 B
CMake
add_test(NAME RealTest COMMAND "${CMAKE_COMMAND}" -E true)
|
|
add_test(NAME GenerateSpecFile1 COMMAND "${CMAKE_COMMAND}" -E true)
|
|
add_test(NAME GenerateSpecFile2 COMMAND "${CMAKE_COMMAND}" -E true)
|
|
set_tests_properties(GenerateSpecFile1 GenerateSpecFile2 PROPERTIES
|
|
GENERATED_RESOURCE_SPEC_FILE "${CMAKE_BINARY_DIR}/dynamic-resspec.json"
|
|
FIXTURES_SETUP "ResourceSpec"
|
|
)
|
|
set_tests_properties(RealTest PROPERTIES
|
|
FIXTURES_REQUIRED "ResourceSpec"
|
|
RESOURCE_GROUPS "widgets:1"
|
|
)
|