From fd6568dbedb646050d85fa020466e33d519fe9b6 Mon Sep 17 00:00:00 2001 From: Jihoon Lee Date: Thu, 22 May 2014 13:42:39 +0900 Subject: [PATCH 1/2] missing COMPONENTS keyword before 'rostest' rosunit --- rocon_python_utils/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocon_python_utils/CMakeLists.txt b/rocon_python_utils/CMakeLists.txt index 0eafccc..08159ed 100644 --- a/rocon_python_utils/CMakeLists.txt +++ b/rocon_python_utils/CMakeLists.txt @@ -19,7 +19,7 @@ catkin_python_setup() ############################################################################## if (CATKIN_ENABLE_TESTING) - find_package(catkin REQUIRED rostest rosunit) + find_package(catkin REQUIRED COMPONENTS rostest rosunit) add_subdirectory(tests) endif() From 45426d59e2412d3caaa171eb4fcf45de8430a716 Mon Sep 17 00:00:00 2001 From: Jihoon Lee Date: Thu, 22 May 2014 13:49:08 +0900 Subject: [PATCH 2/2] error: missing COMPONENTS keyword before 'roslint --- rocon_interactions/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocon_interactions/CMakeLists.txt b/rocon_interactions/CMakeLists.txt index 330da24..50f1d66 100644 --- a/rocon_interactions/CMakeLists.txt +++ b/rocon_interactions/CMakeLists.txt @@ -9,7 +9,7 @@ project(rocon_interactions) # Catkin ############################################################################## -find_package(catkin REQUIRED roslint) +find_package(catkin REQUIRED COMPONENTS roslint) catkin_package() catkin_python_setup()