forked from tdsuper/SPHORB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
26 lines (19 loc) · 716 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
26 lines (19 loc) · 716 Bytes
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
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
project(sphorb)
find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS}
include)
add_executable (example1 example1.cpp
pfm.cpp
utility.cpp
detector.cpp
nonmax.cpp
SPHORB.cpp)
target_link_libraries (example1 ${OpenCV_LIBRARIES})
add_executable (example2 example2.cpp
pfm.cpp
utility.cpp
detector.cpp
nonmax.cpp
SPHORB.cpp)
target_link_libraries (example2 ${OpenCV_LIBRARIES})