forked from ros-teleop/twist_mux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
57 lines (44 loc) · 1.31 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
cmake_minimum_required(VERSION 3.0.2)
project(twist_mux)
find_package(catkin REQUIRED
COMPONENTS
roscpp
std_msgs
geometry_msgs
visualization_msgs
diagnostic_updater)
find_package(Boost REQUIRED)
set(CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")
catkin_package(
INCLUDE_DIRS include
CATKIN_DEPENDS
roscpp
std_msgs
geometry_msgs
visualization_msgs
diagnostic_updater)
include_directories(include ${catkin_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS})
add_executable(twist_mux
src/twist_mux.cpp
src/twist_mux_node.cpp
src/twist_mux_diagnostics.cpp)
target_link_libraries(twist_mux ${catkin_LIBRARIES})
add_executable(twist_marker
src/twist_marker.cpp)
target_link_libraries(twist_marker ${catkin_LIBRARIES})
install(TARGETS twist_mux twist_marker
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
install(PROGRAMS scripts/joystick_relay.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
foreach(dir launch config)
install(DIRECTORY ${dir}/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir})
endforeach()
install(DIRECTORY include/
DESTINATION ${CATKIN_GLOBAL_INCLUDE_DESTINATION}
FILES_MATCHING PATTERN "*.h"
)
if (CATKIN_ENABLE_TESTING)
find_package(rostest REQUIRED)
add_rostest(test/system.test)
endif()