-
Notifications
You must be signed in to change notification settings - Fork 24
/
CMakeLists.txt
32 lines (28 loc) · 1.2 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
cmake_minimum_required(VERSION 2.8.3)
project(kobuki_msgs)
find_package(catkin REQUIRED COMPONENTS std_msgs actionlib_msgs message_generation)
add_message_files(DIRECTORY msg
FILES BumperEvent.msg
CliffEvent.msg
DigitalOutput.msg
ExternalPower.msg
Led.msg
PowerSystemEvent.msg
SensorState.msg
VersionInfo.msg
ControllerInfo.msg
ButtonEvent.msg
DigitalInputEvent.msg
DockInfraRed.msg
KeyboardInput.msg
MotorPower.msg
RobotStateEvent.msg
Sound.msg
ScanAngle.msg
WheelDropEvent.msg
)
add_action_files(DIRECTORY action
FILES AutoDocking.action
)
generate_messages(DEPENDENCIES std_msgs actionlib_msgs)
catkin_package(CATKIN_DEPENDS message_runtime std_msgs actionlib_msgs)