7 lines
204 B
CMake
7 lines
204 B
CMake
|
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} )
|