From 16f4b00521a4e4394d7d7a093a52cc633a24b6b6 Mon Sep 17 00:00:00 2001 From: Joaquim Casals <jcasals@iri.upc.edu> Date: Mon, 25 Feb 2019 12:39:42 +0100 Subject: [PATCH] Removed boost_system (why was it there in the first place?!) --- hello_plugin/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hello_plugin/CMakeLists.txt b/hello_plugin/CMakeLists.txt index ff20e6375..5546382d7 100644 --- a/hello_plugin/CMakeLists.txt +++ b/hello_plugin/CMakeLists.txt @@ -7,8 +7,8 @@ ADD_EXECUTABLE(hello_plugin hello_plugin.cpp) ADD_EXECUTABLE(params_autoconf params_autoconf.cpp) # target_link_libraries(hello_plugin class_loader boost_system console_bridge wolf yaml-cpp ${CERES_LIBRARIES}) # target_link_libraries(params_autoconf class_loader boost_system console_bridge wolf yaml-cpp ) -target_link_libraries(hello_plugin boost_system wolf yaml-cpp ${CERES_LIBRARIES} dl) -target_link_libraries(params_autoconf boost_system wolf yaml-cpp dl) +target_link_libraries(hello_plugin wolf yaml-cpp ${CERES_LIBRARIES} dl) +target_link_libraries(params_autoconf wolf yaml-cpp dl) # These lines always at the end SET(HDRS_PLUGIN ${HDRS_PLUGIN} PARENT_SCOPE ) SET(SRCS_PLUGIN ${SRCS_PLUGIN} PARENT_SCOPE ) -- GitLab