hand_control/CMakeLists.txt

53 lines
1.1 KiB
CMake
Raw Normal View History

2015-04-21 11:44:02 +00:00
cmake_minimum_required(VERSION 2.8.3)
project(hand_control)
find_package(catkin REQUIRED COMPONENTS
pcl_ros
2015-04-21 12:26:46 +00:00
pcl_msgs
2015-04-21 11:44:02 +00:00
roscpp
std_msgs
2015-04-30 19:04:03 +00:00
geometry_msgs
2015-04-23 15:58:31 +00:00
message_generation
2015-04-21 11:44:02 +00:00
)
2015-05-01 19:23:00 +00:00
find_package(
PkgConfig REQUIRED
)
pkg_check_modules ( ncurses REQUIRED ncurses )
2015-04-21 11:44:02 +00:00
2015-04-30 19:04:03 +00:00
add_message_files(
FILES
Plan.msg
)
2015-04-21 11:44:02 +00:00
2015-04-30 19:04:03 +00:00
generate_messages(
DEPENDENCIES
std_msgs
geometry_msgs
2015-04-21 11:44:02 +00:00
)
2015-04-30 19:04:03 +00:00
catkin_package()
2015-04-21 11:44:02 +00:00
include_directories(
${catkin_INCLUDE_DIRS}
2015-05-01 19:23:00 +00:00
${CURSES_INCLUDE_DIRS}
2015-04-21 11:44:02 +00:00
)
2015-04-22 14:53:52 +00:00
add_executable(filtre src/filtre.cpp)
target_link_libraries(filtre ${catkin_LIBRARIES})
2015-04-21 11:44:02 +00:00
2015-04-22 19:38:54 +00:00
add_executable(random_pcl_publisher src/random_pcl_publisher.cpp)
target_link_libraries(random_pcl_publisher ${catkin_LIBRARIES})
add_executable(pcl_displayer src/pcl_displayer.cpp)
target_link_libraries(pcl_displayer ${catkin_LIBRARIES})
2015-04-23 18:42:40 +00:00
2015-05-01 19:23:00 +00:00
add_library(curses src/curses.cpp src/curses.h)
add_executable(keyboard_cmd src/keyboard_cmd.cpp)
target_link_libraries(keyboard_cmd ${catkin_LIBRARIES} ${ncurses_LIBRARIES} curses)
2015-04-23 18:42:40 +00:00
add_executable(normal_estimator src/normal_estimator.cpp)
target_link_libraries(normal_estimator ${catkin_LIBRARIES})
2015-04-30 19:04:03 +00:00
add_dependencies(normal_estimator hand_control_generate_messages_cpp)