-
Notifications
You must be signed in to change notification settings - Fork 31
/
CMakeLists.txt
31 lines (24 loc) · 917 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
cmake_minimum_required(VERSION 2.8.3)
project(aruco)
#Enable C++ 11
add_compile_options(-std=c++11)
#Packages
find_package(catkin REQUIRED COMPONENTS cv_bridge roscpp std_msgs message_generation image_transport)
find_package(OpenCV REQUIRED)
#Messages
add_message_files(FILES Marker.msg)
generate_messages(DEPENDENCIES std_msgs)
#Catkin dependencies
catkin_package(CATKIN_DEPENDS message_runtime roscpp std_msgs)
#Aruco ROS node
add_executable(aruco src/ros/ArucoNode.cpp)
add_dependencies(aruco aruco_generate_messages_cpp ${catkin_EXPORTED_TARGETS})
target_link_libraries(aruco ${catkin_LIBRARIES} ${OpenCV_LIBS})
#Include directories
include_directories(include ${catkin_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS})
#Install
install(TARGETS aruco
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)