This repository has been archived on 2025-12-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SystemC-Components-Test/tests/ordered_semaphore/CMakeLists.txt

11 lines
239 B
CMake

project (ordered_semaphore)
add_executable(${PROJECT_NAME}
test.cpp
${test_util_SOURCE_DIR}/sc_main.cpp
)
target_link_libraries (${PROJECT_NAME} PUBLIC test_util)
if(NOT THREAD_SANITIZER)
catch_discover_tests(${PROJECT_NAME})
endif()