SystemC-Components-Test/tests/ordered_semaphore/CMakeLists.txt

10 lines
223 B
CMake
Raw Normal View History

2022-10-02 11:39:06 +02:00
project (ordered_semaphore)
add_executable(${PROJECT_NAME}
test.cpp
${test_util_SOURCE_DIR}/sc_main.cpp
)
2022-10-02 11:39:06 +02:00
target_link_libraries (${PROJECT_NAME} PUBLIC test_util)
2020-06-04 20:13:02 +02:00
2022-10-02 11:39:06 +02:00
add_test(NAME ${PROJECT_NAME} COMMAND ${PROJECT_NAME})