-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtest.pro
72 lines (59 loc) · 2.53 KB
/
test.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
66
67
68
69
70
71
72
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-13T23:03:48
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = test
TEMPLATE = app
SOURCES += \
dsResult/trackingthread.cpp \
GUI/indicator.cpp \
GUI/main.cpp \
GUI/mainwindow.cpp \
GUI/coordinateIndicator.cpp \
GUI/circularIndicator.cpp \
particles2D/particle2d.cpp \
GUI/particleIndicator.cpp \
particles2D/particlePos.cpp \
GUI/pathitem.cpp
HEADERS += \
dsResult/audio_reader.h \
dsResult/fft.h \
dsResult/myexception.h \
dsResult/stdafx.h \
dsResult/trackingthread.h \
GUI/indicator.h \
GUI/mainwindow.h \
GUI/coordinateIndicator.h \
GUI/circularIndicator.h \
GUI/particleIndicator.h \
particles2D/particle2d.h \
particles2D/particlePos.h \
GUI/pathitem.h \
dsResult/doa_estimation.h
FORMS += \
mainwindow.ui
SUBDIRS += \
dsResult/trackingPacked.pro \
dsResult/trackingPacked.pro
RESOURCES += \
resources.qrc
DISTFILES += \
dsResult/109_1_tracking_fast_s.wav \
dsResult/hamming.wav
INCLUDEPATH += \
dsResult \
GUI \
particles2D
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/release/ -lDoa_Estimation
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/debug/ -lDoa_Estimation
else:unix: LIBS += -L$$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/ -lDoa_Estimation
INCLUDEPATH += $$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/debug
DEPENDPATH += $$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/debug
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/release/libDoa_Estimation.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/debug/libDoa_Estimation.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/release/Doa_Estimation.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/debug/Doa_Estimation.lib
else:unix: PRE_TARGETDEPS += $$PWD/build-Doa_Estimation-Desktop_Qt_5_7_0_MinGW_32bit-Debug/libDoa_Estimation.a