forked from digited/lesynth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesynth.pro
42 lines (34 loc) · 1.06 KB
/
lesynth.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
#-------------------------------------------------
# http://github.com/qtau-devgroup/lesynth
#-------------------------------------------------
TEMPLATE = lib
CONFIG += plugin
TARGET = $$qtLibraryTarget(lesynth)
QT += multimedia
INCLUDEPATH += ../../editor ../
HEADERS += \
leConfig.h \
leSynth.h \
../../tools/utauloid/ust.h \
../../tools/utauloid/oto.h \
../../editor/audio/Source.h \
../../editor/Utils.h
SOURCES += \
leSynth.cpp \
../../tools/utauloid/ust.cpp \
../../tools/utauloid/oto.cpp \
../../editor/audio/Source.cpp \
../../editor/Utils.cpp
QMAKE_CXXFLAGS += -Wall -std=c++11
#--------------------------------------------
CONFIG(debug, debug|release) {
COMPILEDIR = $${OUT_PWD}/../../debug
} else {
COMPILEDIR = $${OUT_PWD}/../../release
}
DESTDIR = $${COMPILEDIR}/plugins
OBJECTS_DIR = $${COMPILEDIR}/lesynth/.obj
MOC_DIR = $${COMPILEDIR}/lesynth/.moc
RCC_DIR = $${COMPILEDIR}/lesynth/.rcc
UI_DIR = $${COMPILEDIR}/lesynth/.ui
#--------------------------------------------