From 8eb72b0cf884f3c3930f95c7a0437163dff7da83 Mon Sep 17 00:00:00 2001 From: Jihoon Lee Date: Thu, 22 May 2014 13:22:49 +0900 Subject: [PATCH 1/2] build include path 'include' does not exist --- concert_tutorials/turtle_concert/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concert_tutorials/turtle_concert/CMakeLists.txt b/concert_tutorials/turtle_concert/CMakeLists.txt index dbc121f..d86db38 100644 --- a/concert_tutorials/turtle_concert/CMakeLists.txt +++ b/concert_tutorials/turtle_concert/CMakeLists.txt @@ -16,7 +16,7 @@ find_package(catkin REQUIRED geometry_msgs turtlesim ) -include_directories(SYSTEM include ${catkin_INCLUDE_DIRS}) +include_directories(SYSTEM ${catkin_INCLUDE_DIRS}) catkin_package( CATKIN_DEPENDS From dad8dbe0b317235408b5c238d85721d8a9cc2033 Mon Sep 17 00:00:00 2001 From: Jihoon Lee Date: Thu, 22 May 2014 13:52:43 +0900 Subject: [PATCH 2/2] rocon_gateway_tutorials file setup.py found but no catkin_python_setup() call --- rocon_gateway_tutorials/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rocon_gateway_tutorials/CMakeLists.txt b/rocon_gateway_tutorials/CMakeLists.txt index e950fd2..66914b2 100644 --- a/rocon_gateway_tutorials/CMakeLists.txt +++ b/rocon_gateway_tutorials/CMakeLists.txt @@ -10,6 +10,8 @@ project(rocon_gateway_tutorials) ############################################################################## find_package(catkin REQUIRED) + +catkin_python_setup() catkin_package() ##############################################################################