forked from pal-robotics/pal_person_detector_opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
22 lines (16 loc) · 806 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
cmake_minimum_required(VERSION 2.8.3)
project(pal_person_detector_opencv)
find_package(catkin REQUIRED COMPONENTS image_transport
pal_detection_msgs
cv_bridge
std_msgs
roscpp)
find_package(OpenCV REQUIRED)
catkin_package(
CATKIN_DEPENDS image_transport cv_bridge pal_detection_msgs roscpp std_msgs
)
include_directories(SYSTEM ${catkin_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS})
add_executable(pal_person_detector_opencv src/person_detector.cpp)
target_link_libraries(pal_person_detector_opencv ${catkin_LIBRARIES} ${OpenCV_LIBRARIES})
install(TARGETS pal_person_detector_opencv
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})