kinetic-devel/CMakeLists.txt

22 lines
322 B
CMake
Raw Normal View History

2012-01-02 09:51:51 +08:00
cmake_minimum_required(VERSION 2.8)
project(ros)
find_package(catkin)
find_package(Boost COMPONENTS thread)
2009-11-12 08:15:01 +08:00
2012-01-02 09:51:51 +08:00
foreach(subdir
core/roslib
tools/rosbash
test/test_roslib
2012-01-02 09:51:51 +08:00
)
add_subdirectory(${subdir})
endforeach()
2009-11-12 08:15:01 +08:00
2012-01-02 09:51:51 +08:00
install(PROGRAMS
bin/rosrun
bin/rxconsole
DESTINATION bin
)
2009-11-12 08:15:01 +08:00
catkin_export_python()