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)