-
Notifications
You must be signed in to change notification settings - Fork 5
/
CMakeLists.txt
67 lines (55 loc) · 1.52 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
cmake_minimum_required(VERSION 2.8.7)
project(ros_inemo_m1_imu)
#########################################################
## Options
option( DEBUG_ACTIVE "Enable Debug build" OFF )
if(DEBUG_ACTIVE)
MESSAGE( "Debug compilation active" )
set(ROS_BUILD_TYPE Debug)
set(CMAKE_BUILD_TYPE Debug)
else()
MESSAGE( "Release compilation active" )
set(ROS_BUILD_TYPE Release)
set(CMAKE_BUILD_TYPE Release)
endif()
#########################################################
#########################################################
# INCLUDES
set(INEMO_INC_PATH
${ros_inemo_m1_imu_SOURCE_DIR}/src/driver/include)
include_directories(${INEMO_INC_PATH})
#########################################################
#########################################################
# SOURCES
file(GLOB_RECURSE inemo_m1_SRC *.cpp)
# HEADERS
file(GLOB_RECURSE inemo_m1_HDR *.h)
#########################################################
#########################################################
#CATKIN
find_package(catkin REQUIRED COMPONENTS
roscpp
serial
std_msgs
)
catkin_package(
CATKIN_DEPENDS
serial
std_msgs
sensor_msgs
geometry_msgs
)
include_directories(${catkin_INCLUDE_DIRS})
#########################################################
#########################################################
# EXECUTABLE
add_executable(
inemo_m1_node
${inemo_m1_HDR}
${inemo_m1_SRC}
)
target_link_libraries(
inemo_m1_node
${catkin_LIBRARIES} pthread
)
#########################################################