-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
98 lines (78 loc) · 2.17 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
cmake_minimum_required(VERSION 3.15.0)
project(mrs_errorgraph)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_definitions(-save-temps)
# add_definitions(-O0)
set(CATKIN_DEPENDENCIES
cmake_modules
roscpp
mrs_lib
message_generation
)
find_package(catkin REQUIRED COMPONENTS
${CATKIN_DEPENDENCIES}
)
# messages
add_message_files(DIRECTORY msg FILES
ErrorgraphNodeID.msg
ErrorgraphError.msg
ErrorgraphElement.msg
ErrorgraphElementArray.msg
)
## Generate added messages and services with any dependencies listed here
generate_messages(DEPENDENCIES
std_msgs
)
set(LIBRARIES
MrsErrorgraph
MrsErrorPublisher
)
catkin_package(
INCLUDE_DIRS include
LIBRARIES ${LIBRARIES}
CATKIN_DEPENDS ${CATKIN_DEPENDENCIES}
)
include_directories(
include
${catkin_INCLUDE_DIRS}
)
## | -------------------- libMrsErrorgraph -------------------- |
## Declare a C++ library
add_library(MrsErrorgraph
src/errorgraph.cpp
)
## Specify libraries to link a library or executable target against
target_link_libraries(MrsErrorgraph
${catkin_LIBRARIES}
)
## | -------------------- libMrsErrorPublisher -------------------- |
## Declare a C++ library
add_library(MrsErrorPublisher
src/error_publisher.cpp
)
## Specify libraries to link a library or executable target against
target_link_libraries(MrsErrorPublisher
${catkin_LIBRARIES}
)
## | ------------------- RootErrorPublisher ------------------- |
## Declare a C++ executable
add_executable(root_error_publisher
src/root_error_publisher.cpp
)
## Specify libraries to link a library or executable target against
target_link_libraries(root_error_publisher
${catkin_LIBRARIES}
MrsErrorgraph
)
## --------------------------------------------------------------
## | Install |
## --------------------------------------------------------------
install(TARGETS ${LIBRARIES}
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION}
)
install(DIRECTORY include/mrs_errorgraph/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)