-
Notifications
You must be signed in to change notification settings - Fork 49
/
CMakeLists.txt
68 lines (59 loc) · 1.55 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
68
cmake_minimum_required(VERSION 2.8.3)
project(monocular_person_following)
add_compile_options(-std=c++11)
find_package(catkin REQUIRED
tf
rospy
roscpp
cv_bridge
message_filters
image_transport
eigen_conversions
message_generation
ccf_person_identification
monocular_people_tracking
)
########################
## service generation ##
########################
add_service_files(FILES
Imprint.srv
)
########################
## message generation ##
########################
add_message_files(FILES
BoundingBox2D.msg
FaceDetection.msg
FaceDetectionArray.msg
Target.msg
)
generate_messages(DEPENDENCIES std_msgs sensor_msgs)
###################################
## catkin specific configuration ##
###################################
catkin_package(
# INCLUDE_DIRS include
# LIBRARIES monocular_person_following
# CATKIN_DEPENDS other_catkin_pkg
# DEPENDS system_lib
)
###########
## Build ##
###########
include_directories(
include
${catkin_INCLUDE_DIRS}
)
add_executable(monocular_person_following_node
src/monocular_person_following/state/initial_state.cpp
src/monocular_person_following/state/initial_training_state.cpp
src/monocular_person_following/state/tracking_state.cpp
src/monocular_person_following/state/reid_state.cpp
src/monocular_person_following/context.cpp
src/monocular_person_following_node.cpp
)
add_dependencies(monocular_person_following_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
target_link_libraries(monocular_person_following_node
${catkin_LIBRARIES}
)