-
Notifications
You must be signed in to change notification settings - Fork 0
/
QtStkTest.pro
100 lines (88 loc) · 2.81 KB
/
QtStkTest.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-11-16T22:22:27
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QtStkTest
TEMPLATE = app
#windows specific defines, including ASIO support
win32:LIBS += odbc32.lib odbccp32.lib winmm.lib Wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib
win32:DEFINES += __WINDOWS_ASIO__ __WINDOWS_MM__ __OS_WIN32__
win32:DEFINES -= UNICODE
win32 {
SOURCES += ../../src/include/asio.cpp \
../../src/include/asiodrivers.cpp \
../../src/include/asiolist.cpp \
../../src/include/iasiothiscallresolver.cpp
HEADERS += ../../src/include/asio.h \
../../src/include/asiodrivers.h \
../../src/include/asiodrvr.h \
../../src/include/asiolist.h \
../../src/include/asiosys.h \
../../src/include/dsound.h \
../../src/include/FunctionDiscoveryKeys_devpkey.h \
../../src/include/ginclude.h \
../../src/include/iasiodrv.h \
../../src/include/iasiothiscallresolver.h \
../../src/include/soundcard.h \
}
#mac/unix specific defines
macx:DEFINES += __MACOSX_CORE__
macx:LIBS += -framework CoreAudio
macx:LIBS += -framework CoreMIDI
macx:LIBS += -framework CoreFoundation
unix:!macx:DEFINES += __LINUX_ALSA__
unix:!macx:LIBS += -lpthread -lasound
#NOTE: for the dependencies below to work,
#this project folder should be in the stk_root/projects
INCLUDEPATH += ../../include/ ../../src/include/
SOURCES += main.cpp\
mainwindow.cpp \
../../src/ADSR.cpp \
../../src/BiQuad.cpp \
../../src/BlowBotl.cpp \
../../src/Clarinet.cpp \
../../src/DelayL.cpp \
../../src/Envelope.cpp \
../../src/Flute.cpp \
../../src/Mutex.cpp \
../../src/Noise.cpp \
../../src/OnePole.cpp \
../../src/OneZero.cpp \
../../src/PoleZero.cpp \
../../src/RtWvOut.cpp \
../../src/Saxofony.cpp \
../../src/SineWave.cpp \
../../src/Stk.cpp \
../../src/RtAudio.cpp \
../../src/RtMidi.cpp \
../../src/Voicer.cpp \
OrganSynth.cpp \
OrganFlue.cpp \
OrganRank.cpp
HEADERS += mainwindow.h \
../../include/ADSR.h \
../../include/BiQuad.h \
../../include/BlowBotl.h \
../../include/Clarinet.h \
../../include/DelayL.h \
../../include/Flute.h \
../../include/Instrmnt.h \
../../include/Mutex.h \
../../include/Noise.h \
../../include/PoleZero.h \
../../include/OnePole.h \
../../include/OneZero.h \
../../include/ReedTable.h \
../../include/RtMidi.h \
../../include/RtWvOut.h \
../../include/Saxophony.h \
../../include/Stk.h \
../../include/SineWave.h \
../../include/Voicer.h \
OrganSynth.h \
OrganFlue.h \
OrganRank.h
FORMS += mainwindow.ui