-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCMakeLists.txt
40 lines (35 loc) · 894 Bytes
/
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
cmake_minimum_required(VERSION 2.8.3)
project(world_canvas_msgs)
find_package(catkin REQUIRED COMPONENTS std_msgs uuid_msgs geometry_msgs std_srvs message_generation)
## Generate messages in the 'msg' folder
add_message_files(
FILES
Annotation.msg
Annotations.msg
AnnotationData.msg
WorldCanvas.msg
MapListEntry.msg
)
## Generate services in the 'srv' folder
add_service_files(
FILES
DeleteMap.srv
ListMaps.srv
PublishMap.srv
RenameMap.srv
SaveMap.srv
DeleteAnnotations.srv
GetAnnotations.srv
GetAnnotationsData.srv
PubAnnotationsData.srv
EditAnnotationsData.srv
SaveAnnotationsData.srv
ListWorlds.srv
SetKeyword.srv
SetRelationship.srv
ResetDatabase.srv
YAMLImport.srv
YAMLExport.srv
)
generate_messages(DEPENDENCIES std_msgs uuid_msgs geometry_msgs)
catkin_package(CATKIN_DEPENDS std_msgs uuid_msgs geometry_msgs std_srvs message_runtime)