Files
Fast-RRT-Star/CMakeLists.txt
Sravan Balaji 1ab700f27f Repo Re-Org, More like ROS Package
- Reorganize repo so docker stuff is
  a folder within fast_rrt_ros ROS package
- Update filepaths in README
- Update `build_and_run_docker.bash`
  to use main folder as build context,
  but use Dockerfile inside docker folder
- Update filepaths in Dockerfile
2023-01-26 16:10:58 -05:00

25 lines
550 B
CMake

cmake_minimum_required(VERSION 3.0.2)
project(fast_rrt_ros)
find_package(catkin REQUIRED COMPONENTS
roscpp
rospy
std_msgs
costmap_2d
nav_core
base_local_planner
)
catkin_package(
INCLUDE_DIRS include
CATKIN_DEPENDS roscpp rospy std_msgs costmap_2d nav_core base_local_planner
)
include_directories(
include
${catkin_INCLUDE_DIRS}
)
add_library(fast_rrt_star_planner_lib src/fast_rrt_star_planner.cpp src/fast_rrt_star_node.cpp src/fast_rrt_star_helper.cpp)
target_link_libraries(fast_rrt_star_planner_lib ${catkin_LIBRARIES})