From 4c132e4a806f18ddd06e3f23b0f2fb71c50f56d6 Mon Sep 17 00:00:00 2001 From: Maarten de Vries Date: Thu, 17 Jan 2019 21:17:42 +0100 Subject: [PATCH] Remove unused `signals` from find_package(Boost COMPONENTS ...) The signals library was not used at all, and it has been removed from boost 1.69. As a result, the package doesn't build anymore with boost 1.69 without this change. --- image_view/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_view/CMakeLists.txt b/image_view/CMakeLists.txt index 0b9814860..88113d146 100644 --- a/image_view/CMakeLists.txt +++ b/image_view/CMakeLists.txt @@ -5,7 +5,7 @@ find_package(catkin REQUIRED COMPONENTS camera_calibration_parsers cv_bridge dyn generate_dynamic_reconfigure_options(cfg/ImageView.cfg) catkin_package(CATKIN_DEPENDS dynamic_reconfigure) -find_package(Boost REQUIRED COMPONENTS signals thread) +find_package(Boost REQUIRED COMPONENTS thread) find_package(OpenCV REQUIRED) include_directories(${Boost_INCLUDE_DIRS}