123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #-------------------------------------------------
- #-------------------------------------------------
- TEMPLATE = lib
- CONFIG += plugin
- TARGET = $$qtLibraryTarget(ecantorixsynth)
- #ecantorix2
- INCLUDEPATH += ../../editor ../ ../../tools
- LIBS += -Wl,--no-undefined
- PKGCONFIG += glib-2.0
- LIBS += -ljack -lsndfile -lsekai -lspeexdsp
- CONFIG += link_pkgconfig
- HEADERS += \
- ecantorix_synth.h \
- ../../tools/utauloid/oto.h \
- ../../editor/Utils.h \
- wavtool.h
- SOURCES += \
- ecantorix_synth.cpp \
- ../../editor/Utils.cpp \
- wavtool.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}/ecantorixsynth/.obj
- MOC_DIR = $${COMPILEDIR}/ecantorixsynth/.moc
- RCC_DIR = $${COMPILEDIR}/ecantorixsynth/.rcc
- UI_DIR = $${COMPILEDIR}/ecantorixsynth/.ui
- #--------------------------------------------
- unix {
- target.path = $${PREFIX}/lib/qtau/plugins
- INSTALLS += target
- }
|