10 lines
209 B
CMake
10 lines
209 B
CMake
|
project (cci_param_restricted)
|
||
|
|
||
|
add_executable(${PROJECT_NAME}
|
||
|
test.cpp
|
||
|
${test_util_SOURCE_DIR}/sc_main.cpp
|
||
|
)
|
||
|
target_link_libraries (${PROJECT_NAME} PUBLIC test_util)
|
||
|
|
||
|
catch_discover_tests(${PROJECT_NAME})
|