blob: f681e5459f9f64bdec863a5b994760e8be07facf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
add_library(tipping-points
NameGame.cc
)
target_link_libraries(tipping-points PUBLIC SNAP::SNAP)
if(TIPPINGPOINTS_MEMLIST)
target_compile_definitions(tipping-points PUBLIC TP_MEMLIST)
endif()
add_executable(one one.cc)
target_link_libraries(one PRIVATE tipping-points)
add_executable(many many.cc)
target_link_libraries(many PRIVATE tipping-points)
add_executable(many-async many-async.cc)
target_link_libraries(many-async PRIVATE tipping-points)
|