forked from galeone/face-miner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathface-mining.pro
65 lines (55 loc) · 1.65 KB
/
face-mining.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
60
61
62
63
64
65
#-------------------------------------------------
#
# Project created by QtCreator 2015-11-07T16:03:02
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = FaceRecognition
TEMPLATE = app
CONFIG += c++14
LIBS += `pkg-config opencv --libs`
SOURCES += main.cpp\
facialrecognition.cpp \
cv2qt.cpp \
qt2cv.cpp \
camstream.cpp \
videostreamview.cpp \
facepatternminer.cpp \
cantor.cpp \
featureclassifier.cpp \
varianceclassifier.cpp \
svmclassifier.cpp \
faceclassifier.cpp \
preprocessor.cpp \
stats.cpp \
facefinder.cpp \
integralimage.cpp
HEADERS += facialrecognition.h \
cv2qt.h \
qt2cv.h \
camstream.h \
videostreamview.h \
facepatternminer.h \
cantor.h \
iclassifier.h \
featureclassifier.h \
varianceclassifier.h \
svmclassifier.h \
faceclassifier.h \
preprocessor.h \
stats.h \
facefinder.h \
integralimage.h
FORMS += facialrecognition.ui
# http://dragly.org/2013/11/05/copying-data-files-to-the-build-directory-when-working-with-qmake/
copydata.commands = $(COPY_DIR) $$PWD/datasets/ $$OUT_PWD
copyxml.commands += $(COPY) $$PWD/*.xml $$OUT_PWD
CONFIG(release, debug|release): mafiaexe.commands = $(COPY) $$PWD/build-MAFIA-Desktop-Release/MAFIA $$OUT_PWD
CONFIG(debug, debug|release): mafiaexe.commands = $(COPY) $$PWD/build-MAFIA-Desktop-Debug/MAFIA $$OUT_PWD
first.depends = $(first) copydata copyxml mafiaexe
export(first.depends)
export(mafiaexe.commands)
export(copydata.commands)
export(copyxml.commands)
QMAKE_EXTRA_TARGETS += first copyxml copydata mafiaexe