cmake_minimum_required(VERSION 3.10) project(efficient_online_segmentation) set(CMAKE_CXX_STANDARD 11) set(CMAKE_BUILD_TYPE "Release") # set(CMAKE_BUILD_TYPE "Debug") find_package(catkin REQUIRED COMPONENTS tf roscpp rospy cv_bridge image_transport pcl_ros pcl_conversions std_msgs sensor_msgs geometry_msgs nav_msgs ) find_package(PCL REQUIRED QUIET) find_package(OpenCV REQUIRED QUIET) catkin_package( INCLUDE_DIRS ros_interface DEPENDS PCL ) include_directories( ${CMAKE_SOURCE_DIR} ${PROJECT_SOURCE_DIR} ${catkin_INCLUDE_DIRS} ${PCL_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS} ) link_directories( ${OpenCV_LIBRARY_DIRS} ${PCL_LIBRARY_DIRS} ) ############################################## add_executable(efficient_online_segmentation_node ros_interface/efficient_online_segmentation_node.cpp core/efficient_online_segmentation.cpp core/smart_sector.cpp core/segmentation_utility.cpp core/adaptive_ground_plane_estimator.cpp ) target_link_libraries(efficient_online_segmentation_node PUBLIC ${catkin_LIBRARIES} ${PCL_LIBRARIES} ${OpenCV_LIBRARIES} ${EIGEN3_LIBRARIES} ${Boost_LIBRARIES} )