-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFormantSynth.pro
115 lines (108 loc) · 2.52 KB
/
FormantSynth.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#-------------------------------------------------
#
# Project created by QtCreator 2015-09-02T14:08:08
#
#-------------------------------------------------
QT += core gui svg xml concurrent
lessThan(QT_MAJOR_VERSION, 5): LIBS+=-lqwt -lasound -lpulse -lpulse-simple
greaterThan(QT_MAJOR_VERSION, 4): LIBS+=-lqwt-qt5 -lasound -lpulse -lpulse-simple
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
QMAKE_CXXFLAGS+=-g -std=c++11 -Wreorder
TARGET = FormantSynth
TEMPLATE = app
INCLUDEPATH+=/usr/include/qwt
INCLUDEPATH+=./dsp
INCLUDEPATH+=./fft
INCLUDEPATH+=./Formant
INCLUDEPATH+=./Guitar
INCLUDEPATH+=./SyntTest
SOURCES += main.cpp\
mainwindow.cpp \
fft/stft.cpp \
fft/istft.cpp \
dsp/pvoc.cpp \
# dsp/psample.cpp \
fft/fft.cpp \
wave_in.cpp \
ploter.cpp \
# spectrogram.cpp \
dsp/gen.cpp \
happybirsday.cpp \
dsp/filter.cpp \
common.cpp \
test.cpp \
envelope.cpp \
alsadriver.cpp \
sounddriverdialog.cpp \
Formant/formantsyntform.cpp \
syntezer.cpp \
Formant/formantsynt.cpp \
pianowidget.cpp \
freqtable.cpp \
midinote.cpp \
key2notetable.cpp \
buffer.cpp \
notetowaveformthread.cpp \
svgwidget.cpp \
Formant/formantsynthsvg.cpp \
svg_path_parser.cpp \
Formant/mouth.cpp \
print.cpp \
Guitar/guitarsynth.cpp \
SyntTest/synttestform.cpp \
SyntTest/testsynth.cpp \
FM/fm.cpp \
FM/fm_dialog.cpp \
FM/fm_envelope.cpp \
channelsdlg.cpp \
puseaudiodriver.cpp \
FM/lfo.cpp
HEADERS += mainwindow.h \
fft/stft.h \
ploter.h \
happybirsday.h \
dsp/gen.h \
dsp/filter.h \
common.h \
fft/fft.h \
complex.h \
wave_in.h \
dsp/pvoc.h \
test.h \
envelope.h \
alsadriver.h \
sounddriverdialog.h \
Formant/formantsyntform.h \
syntezer.h \
Formant/formantsynt.h \
pianowidget.h \
freqtable.h \
midinote.h \
key2notetable.h \
buffer.h \
notetowaveformthread.h \
svgwidget.h \
Formant/formantsynthsvg.h \
svg_path_parser.h \
Formant/mouth.h \
print.h \
Guitar/guitarsynth.h \
SyntTest/synttestform.h \
SyntTest/testsynth.h \
fft/istft.h \
FM/fm_dialog.h \
FM/fm.h \
FM/fm_envelope.h \
channelsdlg.h \
puseaudiodriver.h \
FM/lfo.h
# spectrogram.h
FORMS += mainwindow.ui \
sounddriverdialog.ui \
Formant/formantsyntform.ui \
SyntTest/nessyntform.ui \
FM/fm_dialog.ui \
channelsdlg.ui
OTHER_FILES += \
play_wav.sh \
midi_data/happy_birsday.txt