forked from husarion/tf03_driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
40 lines (30 loc) · 830 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
38
39
40
cmake_minimum_required(VERSION 2.8.3)
project(tf03_driver)
add_compile_options(-std=c++11)
find_package(PkgConfig)
pkg_check_modules(SERIAL libserial)
if(SERIAL_VERSION VERSION_LESS 1.0.0)
add_definitions(-DLIBSERIAL_0_X)
endif()
find_package(catkin REQUIRED COMPONENTS
roscpp
)
find_package(catkin REQUIRED)
catkin_package( )
include_directories(
include
${catkin_INCLUDE_DIRS}
${SERIAL_INCLUDE_DIRS}
)
add_executable(tf03_node src/tf03_node.cpp src/TF03.cpp)
target_link_libraries(tf03_node
${catkin_LIBRARIES}
${SERIAL_LDFLAGS}
)
install(DIRECTORY launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
install(TARGETS tf03_node
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})