95 lines
3.0 KiB
CMake
95 lines
3.0 KiB
CMake
|
|
cmake_minimum_required(VERSION 2.8.3)
|
||
|
|
project(pointcloud_to_laserscan)
|
||
|
|
|
||
|
|
## Find catkin macros and libraries
|
||
|
|
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
|
||
|
|
## is used, also find other catkin packages
|
||
|
|
find_package(catkin REQUIRED COMPONENTS
|
||
|
|
dynamic_reconfigure
|
||
|
|
message_filters
|
||
|
|
nodelet
|
||
|
|
pcl_ros
|
||
|
|
roscpp
|
||
|
|
sensor_msgs
|
||
|
|
)
|
||
|
|
find_package(PCL REQUIRED)
|
||
|
|
|
||
|
|
|
||
|
|
###################################
|
||
|
|
## catkin specific configuration ##
|
||
|
|
###################################
|
||
|
|
## The catkin_package macro generates cmake config files for your package
|
||
|
|
## Declare things to be passed to dependent projects
|
||
|
|
## INCLUDE_DIRS: uncomment this if you package contains header files
|
||
|
|
## LIBRARIES: libraries you create in this project that dependent projects also need
|
||
|
|
## CATKIN_DEPENDS: catkin_packages dependent projects also need
|
||
|
|
## DEPENDS: system dependencies of this project that dependent projects also need
|
||
|
|
catkin_package(
|
||
|
|
INCLUDE_DIRS include
|
||
|
|
# LIBRARIES pointcloud_to_laserscan
|
||
|
|
# CATKIN_DEPENDS dynamic_reconfigure libpcl-all-dev message_filters nodelet pcl_ros roscpp sensor_msgs
|
||
|
|
# DEPENDS system_lib
|
||
|
|
)
|
||
|
|
|
||
|
|
include_directories(
|
||
|
|
include
|
||
|
|
${catkin_INCLUDE_DIRS}
|
||
|
|
)
|
||
|
|
|
||
|
|
add_library(PointCloudToLaserScan src/PointCloudToLaserScanBase.cpp)
|
||
|
|
#add_dependencies(DepthImageToLaserScanROS ${PROJECT_NAME}_gencfg)
|
||
|
|
target_link_libraries(PointCloudToLaserScan ${catkin_LIBRARIES})
|
||
|
|
|
||
|
|
add_executable(pointcloud_to_laserscan src/pointcloud_to_laserscan_node.cpp)
|
||
|
|
#add_dependencies(pointcloud_to_laserscan pointcloud_to_laserscan_generate_messages_cpp)
|
||
|
|
target_link_libraries(pointcloud_to_laserscan PointCloudToLaserScan ${catkin_LIBRARIES})
|
||
|
|
|
||
|
|
|
||
|
|
#############
|
||
|
|
## Install ##
|
||
|
|
#############
|
||
|
|
|
||
|
|
# all install targets should use catkin DESTINATION variables
|
||
|
|
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
|
||
|
|
|
||
|
|
## Mark executable scripts (Python etc.) for installation
|
||
|
|
## in contrast to setup.py, you can choose the destination
|
||
|
|
# install(PROGRAMS
|
||
|
|
# scripts/my_python_script
|
||
|
|
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
|
||
|
|
# )
|
||
|
|
|
||
|
|
## Mark executables and/or libraries for installation
|
||
|
|
# install(TARGETS pointcloud_to_laserscan pointcloud_to_laserscan_node
|
||
|
|
# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
|
||
|
|
# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
|
||
|
|
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
|
||
|
|
# )
|
||
|
|
|
||
|
|
## Mark cpp header files for installation
|
||
|
|
# install(DIRECTORY include/${PROJECT_NAME}/
|
||
|
|
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
|
||
|
|
# FILES_MATCHING PATTERN "*.h"
|
||
|
|
# PATTERN ".svn" EXCLUDE
|
||
|
|
# )
|
||
|
|
|
||
|
|
## Mark other files for installation (e.g. launch and bag files, etc.)
|
||
|
|
# install(FILES
|
||
|
|
# # myfile1
|
||
|
|
# # myfile2
|
||
|
|
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
|
||
|
|
# )
|
||
|
|
|
||
|
|
#############
|
||
|
|
## Testing ##
|
||
|
|
#############
|
||
|
|
|
||
|
|
## Add gtest based cpp test target and link libraries
|
||
|
|
# catkin_add_gtest(${PROJECT_NAME}-test test/test_pointcloud_to_laserscan.cpp)
|
||
|
|
# if(TARGET ${PROJECT_NAME}-test)
|
||
|
|
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
|
||
|
|
# endif()
|
||
|
|
|
||
|
|
## Add folders to be run by python nosetests
|
||
|
|
# catkin_add_nosetests(test)
|