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

8 lines
256 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.12)
add_executable (ordered_sem
sc_main.cpp
)
target_link_libraries (ordered_sem LINK_PUBLIC scc)
target_link_libraries (ordered_sem LINK_PUBLIC ${Boost_LIBRARIES} )
2020-06-04 20:13:02 +02:00
add_test(NAME ordered_sem_test COMMAND ordered_sem)