-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
74 lines (55 loc) · 1.57 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
cmake_minimum_required(VERSION 3.5)
project(mrs_uav_testing)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_definitions(-Wall)
add_definitions(-Wextra)
set(CATKIN_DEPENDENCIES
cmake_modules
roscpp
mrs_lib
mrs_msgs
)
set(LIBRARIES
MrsUavTesting_TestGeneric
)
find_package(catkin REQUIRED COMPONENTS
${CATKIN_DEPENDENCIES}
)
catkin_package(
INCLUDE_DIRS include
CATKIN_DEPENDS ${CATKIN_DEPENDENCIES}
LIBRARIES ${LIBRARIES}
)
include_directories(
include
${catkin_INCLUDE_DIRS}
)
# Test Generic
add_library(MrsUavTesting_TestGeneric
src/test_generic.cpp
)
target_link_libraries(MrsUavTesting_TestGeneric
${catkin_LIBRARIES}
)
## --------------------------------------------------------------
## | Testing |
## --------------------------------------------------------------
if(CATKIN_ENABLE_TESTING AND MRS_ENABLE_TESTING)
message(WARNING "Testing enabled.")
add_subdirectory(test)
endif()
## --------------------------------------------------------------
## | 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_uav_testing/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)
install(DIRECTORY launch config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)