-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQTau.pro
More file actions
79 lines (70 loc) · 2.02 KB
/
QTau.pro
File metadata and controls
79 lines (70 loc) · 2.02 KB
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
#-------------------------------------------------
# http://github.com/digited/qtau
#-------------------------------------------------
QT += core widgets network multimedia
TARGET = QTau
TEMPLATE = app
INCLUDEPATH += tools
SOURCES += \
editor/main.cpp \
editor/mainwindow.cpp \
editor/Session.cpp \
editor/Controller.cpp \
tools/utauloid/ust.cpp \
editor/ui/piano.cpp \
editor/ui/noteEditor.cpp \
editor/ui/dynDrawer.cpp \
editor/ui/meter.cpp \
editor/Utils.cpp \
editor/ui/noteEditorHandlers.cpp \
editor/ui/waveform.cpp \
editor/audio/Source.cpp \
editor/audio/Player.cpp \
editor/audio/Mixer.cpp \
editor/audio/Codec.cpp \
editor/audio/CodecBase.cpp
HEADERS += \
editor/mainwindow.h \
editor/PluginInterfaces.h \
editor/Events.h \
editor/Controller.h \
editor/Session.h \
tools/utauloid/ust.h \
editor/ui/piano.h \
editor/ui/noteEditor.h \
editor/ui/dynDrawer.h \
editor/ui/meter.h \
editor/ui/Config.h \
editor/Utils.h \
editor/NoteEvents.h \
editor/ui/noteEditorHandlers.h \
tools/ffft/OscSinCos.hpp \
tools/ffft/OscSinCos.h \
tools/ffft/FFTRealUseTrigo.hpp \
tools/ffft/FFTRealUseTrigo.h \
tools/ffft/FFTRealSelect.hpp \
tools/ffft/FFTRealSelect.h \
tools/ffft/FFTRealPassInverse.hpp \
tools/ffft/FFTRealPassInverse.h \
tools/ffft/FFTRealPassDirect.hpp \
tools/ffft/FFTRealPassDirect.h \
tools/ffft/FFTRealFixLenParam.h \
tools/ffft/FFTRealFixLen.hpp \
tools/ffft/FFTRealFixLen.h \
tools/ffft/FFTReal.hpp \
tools/ffft/FFTReal.h \
tools/ffft/DynArray.hpp \
tools/ffft/DynArray.h \
tools/ffft/def.h \
tools/ffft/Array.hpp \
tools/ffft/Array.h \
editor/ui/waveform.h \
editor/audio/Source.h \
editor/audio/Player.h \
editor/audio/Mixer.h \
editor/audio/Codec.h \
editor/audio/CodecBase.h
FORMS += editor/ui/mainwindow.ui
RESOURCES += editor/res/qtau.qrc
windows:RC_FILE = editor/res/qtau_win.rc
QMAKE_CXXFLAGS += -Wunused-parameter