forked from ros-drivers/microstrain_mips
-
Notifications
You must be signed in to change notification settings - Fork 75
/
CMakeLists.txt
59 lines (50 loc) · 1.46 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
cmake_minimum_required(VERSION 3.0.2)
project(microstrain_inertial_msgs)
find_package(catkin REQUIRED COMPONENTS
message_generation
std_msgs
geometry_msgs
)
# Locate the common code and messages
set(COMMON_NAME "microstrain_inertial_msgs_common")
set(COMMON_DIR "${${PROJECT_NAME}_SOURCE_DIR}/${COMMON_NAME}")
# Make sure that the submodule has been properly initialized
if(NOT EXISTS "${COMMON_DIR}/msg")
message(STATUS "Initializing ${COMMON_DIR} submodule. This should only happen once.")
# Make sure we can find the git executable
find_package(Git)
if(NOT Git_FOUND)
message(FATAL_ERROR "Unable to initialize submodule because we could not find the git executable. Please clone this repo using 'git clone --recursive'")
endif()
# Initialize and update the submodule
execute_process(
WORKING_DIRECTORY "${${PROJECT_NAME}_SOURCE_DIR}"
COMMAND ${CMAKE_COMMAND} -E env ${GIT_EXECUTABLE} submodule update --recursive --init
)
endif()
# Generate Service Files
set(SRV_DIR "${COMMON_DIR}/srv")
file(GLOB SRV_FILES RELATIVE "${SRV_DIR}"
"${SRV_DIR}/*.srv")
add_service_files(
DIRECTORY ${SRV_DIR}
FILES ${SRV_FILES}
)
# Generate Message Files
set(MSG_DIR "${COMMON_DIR}/msg")
file(GLOB MSG_FILES RELATIVE "${MSG_DIR}"
"${MSG_DIR}/*.msg")
add_message_files(
DIRECTORY ${MSG_DIR}
FILES ${MSG_FILES}
)
generate_messages(
DEPENDENCIES
std_msgs
geometry_msgs
)
catkin_package(CATKIN_DEPENDS
message_runtime
std_msgs
geometry_msgs
)