-
Notifications
You must be signed in to change notification settings - Fork 198
/
CMakeLists.txt
56 lines (43 loc) · 1.75 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
cmake_minimum_required(VERSION 2.8.3)
project(teleop_twist_joy)
find_package(catkin REQUIRED COMPONENTS geometry_msgs roscpp sensor_msgs)
catkin_package(
INCLUDE_DIRS include
LIBRARIES ${PROJECT_NAME}
CATKIN_DEPENDS geometry_msgs roscpp sensor_msgs
)
include_directories(include ${catkin_INCLUDE_DIRS})
add_library(${PROJECT_NAME} src/${PROJECT_NAME})
target_link_libraries(${PROJECT_NAME} ${catkin_LIBRARIES})
add_executable(${PROJECT_NAME}_node src/teleop_node.cpp)
target_link_libraries(${PROJECT_NAME}_node ${PROJECT_NAME} ${catkin_LIBRARIES})
set_target_properties(${PROJECT_NAME}_node
PROPERTIES OUTPUT_NAME teleop_node PREFIX "")
install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION})
install(DIRECTORY launch config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
if (CATKIN_ENABLE_TESTING)
find_package(roslint REQUIRED)
roslint_cpp(include/ src/)
roslint_python()
roslint_add_test()
find_package(roslaunch REQUIRED)
roslaunch_add_file_check(launch/teleop.launch)
find_package(rostest REQUIRED)
include_directories(include ${catkin_INCLUDE_DIRS})
# Check axes and scaling.
add_rostest(test/differential_joy.test)
add_rostest(test/holonomic_joy.test)
add_rostest(test/six_dof_joy.test)
# Check enable and turbo button logic.
add_rostest(test/no_enable_joy.test)
add_rostest(test/turbo_enable_joy.test)
add_rostest(test/only_turbo_joy.test)
add_rostest(test/turbo_angular_enable_joy.test)
add_rostest(test/turbo_angular_enable_joy_with_rosparam_map.test)
endif()