move build system to use conan cmake_find_package generator
This commit is contained in:
@ -1,8 +1,13 @@
|
||||
cmake_minimum_required(VERSION 3.12)
|
||||
find_package(Boost COMPONENTS program_options REQUIRED)
|
||||
add_executable (ordered_sem
|
||||
sc_main.cpp
|
||||
)
|
||||
target_link_libraries (ordered_sem LINK_PUBLIC scc)
|
||||
target_link_libraries (ordered_sem LINK_PUBLIC ${Boost_LIBRARIES} )
|
||||
if(TARGET Boost::program_options)
|
||||
target_link_libraries(ordered_sem PUBLIC Boost::program_options)
|
||||
else()
|
||||
target_link_libraries(ordered_sem LINK_PUBLIC ${BOOST_program_options_LIBRARY})
|
||||
endif()
|
||||
|
||||
add_test(NAME ordered_sem_test COMMAND ordered_sem)
|
Reference in New Issue
Block a user