-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIGNMapper.pro
59 lines (46 loc) · 1.27 KB
/
IGNMapper.pro
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
TEMPLATE = app
CONFIG += qt uic link_pkgconfig
QT = gui xml widgets opengl
PKGCONFIG += opencv4
QMAKE_CXXFLAGS *= -fopenmp
LIBS *= -lgomp
SOURCES = IGNMapper.cpp \
ScreenshotCollectionMapDB.cpp \
MapDB.cpp \
MapAccessor.cpp \
MapGUIWindow.cpp \
MapViewer.cpp \
QctFile.cpp \
MapExporter.cpp \
MapRegistration.cpp \
QctMapDB.cpp
HEADERS = MapDB.h \
MapAccessor.h \
MapGUIWindow.h \
ScreenshotCollectionMapDB.h \
MapViewer.h \
config.h \
QctFile.h \
MapExporter.h \
MapRegistration.h \
QctMapDB.h
INCLUDEPATH += /usr/include/opencv4
SOURCES += opencv_nonfree/surf.cpp
HEADERS += opencv_nonfree/surf.hpp opencv_nonfree/cuda.hpp opencv_nonfree/nonfree.hpp opencv_nonfree/precomp.hpp opencv_nonfree/xfeatures2d.hpp
DEFINES += OPENCV_ENABLE_NONFREE
FORMS =
LIBS *= -lQGLViewer-qt5
UI_DIR = .ui
LIBS *= -lglut -lGLU
# openCV
LIBS *= -lopencv_core -lopencv_imgproc -lopencv_features2d -lopencv_flann -lopencv_imgcodecs
#-lopencv_highgui -lopencv_ml -lopencv_video -lopencv_objdetect
#-lopencv_contrib -lopencv_legacy -lopencv_calib3d
debug {
OBJECTS_DIR = .obj.debug
DESTDIR = bin.debug
}
release {
OBJECTS_DIR = .obj.release
DESTDIR = bin.release
}