hand_control/CMakeLists.txt

73 lines
2.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
pcl_msgs
roscpp
std_msgs
geometry_msgs
message_generation
ardrone_autonomy
dynamic_reconfigure
)
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
add_executable(normal_estimator src/normal_estimator.cpp)
2015-04-23 18:42:40 +00:00
target_link_libraries(normal_estimator ${catkin_LIBRARIES})
2015-04-30 19:04:03 +00:00
add_dependencies(normal_estimator hand_control_generate_messages_cpp)
2015-05-06 17:44:31 +00:00
add_executable(commande src/commande.cpp)
2015-05-06 17:44:31 +00:00
target_link_libraries(commande ${catkin_LIBRARIES})
2015-05-12 18:35:01 +00:00
add_executable(commande-new src/commande-new.cpp)
2015-05-12 18:35:01 +00:00
target_link_libraries(commande-new ${catkin_LIBRARIES})
add_executable(commande-new-1d src/commande-new-1d.cpp)
2015-05-12 18:35:01 +00:00
target_link_libraries(commande-new-1d ${catkin_LIBRARIES})
#add dynamic reconfigure api
generate_dynamic_reconfigure_options(
cfg/Filtre.cfg
2015-05-27 13:50:05 +00:00
cfg/Commande.cfg
)
add_dependencies(filtre ${PROJECT_NAME}_gencfg)
catkin_package(
CATKIN_DEPENDS message_runtime
)