-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAudioAnalyzer.pro
86 lines (77 loc) · 2.07 KB
/
AudioAnalyzer.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#-------------------------------------------------
#
# Project created by QtCreator 2015-11-30T13:17:50
#
#-------------------------------------------------
QT += core gui multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = AudioAnalyzer
TEMPLATE = app
INCLUDEPATH += C:\Qwt-6.1.2\src
SOURCES += main.cpp\
mainwindow.cpp \
formdevices.cpp \
signalgenerator.cpp \
formscope.cpp \
scopeplotcurve.cpp \
scopeplotbase.cpp \
analogplot.cpp \
formanalyzer.cpp \
window.cpp \
AnalyzerPlot.cpp \
frequencyplot.cpp \
formsiggen.cpp \
audiofactory.cpp \
audiointerface.cpp \
RtAudio/RtAudio.cpp \
RtAudio/include/asio.cpp \
RtAudio/include/asiodrivers.cpp \
RtAudio/include/asiolist.cpp \
RtAudio/include/iasiothiscallresolver.cpp \
four.cpp \
weightingfilter.cpp \
randomnumber.cpp
HEADERS += mainwindow.h \
formdevices.h \
signalgenerator.h \
formscope.h \
signalbuffer.h \
analogsignal.h \
scopeplotcurve.h \
scopeplot.h \
scopeplotbase.h \
analogplot.h \
iscope.h \
formanalyzer.h \
window.h \
IAnalyzer.h \
AnalyzerPlot.h \
frequencyplot.h \
formsiggen.h \
audiofactory.h \
audiointerface.h \
RtAudio/RtAudio.h \
RtAudio/include/asio.h \
RtAudio/include/asiodrivers.h \
RtAudio/include/asiodrvr.h \
RtAudio/include/asiolist.h \
RtAudio/include/asiosys.h \
RtAudio/include/dsound.h \
RtAudio/include/FunctionDiscoveryKeys_devpkey.h \
RtAudio/include/ginclude.h \
RtAudio/include/iasiodrv.h \
RtAudio/include/iasiothiscallresolver.h \
RtAudio/include/soundcard.h \
four.h \
weightingfilter.h \
randomnumber.h
FORMS += mainwindow.ui \
formdevices.ui \
formscope.ui \
formanalyzer.ui \
formsiggen.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/libs/ -lqwt
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/libs/ -lqwtd -lole32 -ldsound -lwinmm
else:unix: LIBS += -L$$PWD/libs/ -lqwt
INCLUDEPATH += $$PWD/libs
DEPENDPATH += $$PWD/libs