-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
28 lines (20 loc) · 923 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
cmake_minimum_required(VERSION 2.8)
project(opencv_test)
set(CMAKE_CXX_STANDARD 17)
find_package(OpenCV REQUIRED)
add_executable(binarize src/binarize.cpp)
target_link_libraries(binarize ${OpenCV_LIBS})
add_executable(bitwiseand src/bitwiseand.cpp)
target_link_libraries(bitwiseand ${OpenCV_LIBS})
add_executable(filter src/filter.cpp)
target_link_libraries(filter ${OpenCV_LIBS})
add_executable(image_arithmetic src/image_arithmetic.cpp)
target_link_libraries(image_arithmetic ${OpenCV_LIBS})
add_executable(meanstddev src/meanstddev.cpp)
target_link_libraries(meanstddev ${OpenCV_LIBS})
add_executable(moving_obj_detection src/moving_obj_detection.cpp)
target_link_libraries(moving_obj_detection ${OpenCV_LIBS})
add_executable(parallelfor src/parallelfor.cpp)
target_link_libraries(parallelfor ${OpenCV_LIBS})
add_executable(display_image src/display_image.cpp)
target_link_libraries(display_image ${OpenCV_LIBS})