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.
19 lines
561 B
19 lines
561 B
add_test(NAME cmake_import_configure
|
|
COMMAND ${CMAKE_COMMAND}
|
|
-G "${CMAKE_GENERATOR}"
|
|
-A "${CMAKE_GENERATOR_PLATFORM}"
|
|
-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}
|
|
-Dnlohmann_json_DIR=${PROJECT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/project
|
|
)
|
|
add_test(NAME cmake_import_build
|
|
COMMAND ${CMAKE_COMMAND} --build .
|
|
)
|
|
set_tests_properties(cmake_import_configure PROPERTIES
|
|
FIXTURES_SETUP cmake_import
|
|
LABELS not_reproducible
|
|
)
|
|
set_tests_properties(cmake_import_build PROPERTIES
|
|
FIXTURES_REQUIRED cmake_import
|
|
LABELS not_reproducible
|
|
)
|
|
|