mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
19 lines
365 B
CMake
19 lines
365 B
CMake
cmake_minimum_required(VERSION 2.8.3)
|
|
project(rob456_hw2)
|
|
|
|
## 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
|
|
stage_ros
|
|
geometry_msgs
|
|
roscpp
|
|
rospy
|
|
)
|
|
|
|
catkin_package()
|
|
|
|
include_directories(
|
|
${catkin_INCLUDE_DIRS}
|
|
)
|