hand_control/CMakeLists.txt

72 lines
2 KiB
CMake
Raw Normal View History

2015-04-21 11:44:02 +00:00
cmake_minimum_required(VERSION 2.8.3)
project(hand_control)
2015-05-27 17:41:33 +00:00
find_package(catkin REQUIRED COMPONENTS
pcl_ros
pcl_msgs
roscpp
std_msgs
geometry_msgs
message_generation
ardrone_autonomy
dynamic_reconfigure
)
2015-05-27 17:41:33 +00:00
2015-05-01 19:23:00 +00:00
find_package(
PkgConfig REQUIRED
)
2015-05-01 19:23:00 +00:00
2015-05-01 21:22:13 +00:00
pkg_check_modules ( ncursesw REQUIRED ncursesw)
2015-04-21 11:44:02 +00:00
add_message_files(
FILES
Plan.msg
)
2015-04-21 11:44:02 +00:00
generate_messages(
DEPENDENCIES
std_msgs
geometry_msgs
)
2015-04-21 11:44:02 +00:00
include_directories(
${catkin_INCLUDE_DIRS}
${ncursesw_INCLUDE_DIRS}
)
2015-04-21 11:44:02 +00:00
add_executable(filtre src/filtre.cpp)
2015-04-22 14:53:52 +00:00
target_link_libraries(filtre ${catkin_LIBRARIES})
2015-04-21 11:44:02 +00:00
add_executable(random_pcl_publisher src/random_pcl_publisher.cpp)
2015-04-22 19:38:54 +00:00
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 21:22:13 +00:00
add_library(display src/display.cpp)
2015-05-01 19:23:00 +00:00
add_executable(keyboard_cmd src/keyboard_cmd.cpp)
2015-05-01 21:22:13 +00:00
target_link_libraries(keyboard_cmd display ${catkin_LIBRARIES} ${ncursesw_LIBRARIES})
2015-05-01 19:23:00 +00:00
2015-05-27 16:31:41 +00:00
add_executable(normal_estimator_pca src/normal_estimator-pca.cpp)
target_link_libraries(normal_estimator_pca ${catkin_LIBRARIES})
2015-05-27 20:01:38 +00:00
add_dependencies(normal_estimator_pca hand_control_generate_messages_cpp)
2015-05-27 14:49:47 +00:00
add_executable(commande-abs src/commande-abs.cpp)
target_link_libraries(commande-abs ${catkin_LIBRARIES})
2015-05-27 20:01:38 +00:00
add_dependencies(commande-abs hand_control_generate_messages_cpp)
2015-05-27 14:49:47 +00:00
#add dynamic reconfigure api
2015-05-27 17:41:33 +00:00
generate_dynamic_reconfigure_options(
cfg/Filtre.cfg
cfg/Commande.cfg
)
add_dependencies(filtre ${PROJECT_NAME}_gencfg)
2015-05-27 17:41:33 +00:00
add_dependencies(commande-abs ${PROJECT_NAME}_gencfg)
catkin_package(
CATKIN_DEPENDS message_runtime
)