-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
45 lines (38 loc) · 900 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
41
42
43
44
45
project(ocv_tests)
set(CMAKE_CXX_FLAGS "-Wall -Wextra -ansi -pedantic")
#add_executable(ocv_tests main.cpp)
#target_link_libraries(ocv_tests
# opencv_core
# opencv_highgui
#)
#add_executable(color_segment color_segment.cpp)
#target_link_libraries(color_segment
# opencv_core
# opencv_highgui
#)
#add_executable(bottracker bottracking.cpp bottracker.cpp utils.cpp)
#target_link_libraries(bottracker
# opencv_core
# opencv_highgui
#)
add_executable(tracktest
utils.cpp
ball_sample.cpp
bot_sample.cpp
field_sample.cpp
bottracker.cpp
tracktest.cpp
)
target_link_libraries(tracktest
opencv_core
opencv_highgui
rt
opencv_gpu
opencv_imgproc
)
#add_executable(pruebas pruebas.cpp utils.cpp)
#target_link_libraries(pruebas
# opencv_core
# opencv_highgui
# gtest
#)