22 lines
322 B
CMake
22 lines
322 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(ros)
|
|
find_package(catkin)
|
|
find_package(Boost COMPONENTS thread)
|
|
|
|
foreach(subdir
|
|
core/roslib
|
|
tools/rosbash
|
|
test/test_roslib
|
|
)
|
|
add_subdirectory(${subdir})
|
|
endforeach()
|
|
|
|
|
|
install(PROGRAMS
|
|
bin/rosrun
|
|
bin/rxconsole
|
|
DESTINATION bin
|
|
)
|
|
|
|
catkin_export_python()
|