forked from Arcanain/eskf_localization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
37 lines (30 loc) · 860 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
cmake_minimum_required(VERSION 3.0.2)
project(gnss_imu_odom_ESKF)
find_package(catkin REQUIRED
roscpp
rospy
std_msgs
nav_msgs
sensor_msgs
geometry_msgs
tf
)
find_package(Eigen3 REQUIRED)
catkin_package(
# INCLUDE_DIRS include
# LIBRARIES gnss_imu_odom_ESKF
# CATKIN_DEPENDS other_catkin_pkg
# DEPENDS system_lib
)
include_directories(
include
${PROJECT_SOURCE_DIR}/../../devel/include
${catkin_INCLUDE_DIRS}
${EIGEN3_INCLUDE_DIRS}
)
add_executable(eskf_localization src/eskf_localization.cpp)
target_link_libraries(eskf_localization ${catkin_LIBRARIES})
add_executable(gps_trajectory_plotter src/gps_trajectory_plotter.cpp)
target_link_libraries(gps_trajectory_plotter ${catkin_LIBRARIES})
add_executable(odometry_publisher src/odometry_publisher.cpp)
target_link_libraries(odometry_publisher ${catkin_LIBRARIES})