forked from nordewal/sfm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsfm.pro
33 lines (25 loc) · 973 Bytes
/
sfm.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-10-19T11:57:33
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = sfm
TEMPLATE = app
SOURCES += src/ui/mainwindow/mainwindow.cpp \
src/ui/mainwindow/featuredetectiontab.cpp \
src/ui/widgets/cvimagewidget.h \
src/ui/mainwindow/featurematchingtab.cpp \
src/ui/mainwindow/matrixfindingtab.cpp \
src/ui/mainwindow/triangulationtab.cpp
HEADERS += src/ui/mainwindow/mainwindow.h \
src/ui/mainwindow/featuredetectiontab.h \
src/ui/mainwindow/featurematchingtab.h \
src/ui/mainwindow/matrixfindingtab.h \
src/ui/mainwindow/triangulationtab.h
FORMS += src/ui/mainwindow/mainwindow.ui \
src/ui/mainwindow/featuredetectiontab.ui \
src/ui/mainwindow/featurematchingtab.ui \
src/ui/mainwindow/matrixfindingtab.ui \
src/ui/mainwindow/triangulationtab.ui