12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #-------------------------------------------------
- #-------------------------------------------------
- TEMPLATE = lib
- CONFIG += plugin
- TARGET = $$qtLibraryTarget(eprsynth)
- INCLUDEPATH += ../../editor ../ ../../tools
- LIBS += -Wl,--no-undefined
- PKGCONFIG += glib-2.0
- LIBS += -ljack -lsndfile -lsekai
- CONFIG += link_pkgconfig
- HEADERS += \
- epr_synth.h
- SOURCES += \
- epr_synth.cpp
- QMAKE_CXXFLAGS += -Wall -std=c++11
- #--------------------------------------------
- CONFIG(debug, debug|release) {
- COMPILEDIR = $${OUT_PWD}/../../debug
- LIBS += -Wl,--no-undefined
- } else {
- COMPILEDIR = $${OUT_PWD}/../../release
- }
- DESTDIR = $${COMPILEDIR}/plugins
- OBJECTS_DIR = $${COMPILEDIR}/eprsynth/.obj
- MOC_DIR = $${COMPILEDIR}/eprsynth/.moc
- RCC_DIR = $${COMPILEDIR}/eprsynth/.rcc
- UI_DIR = $${COMPILEDIR}/eprsynth/.ui
- #--------------------------------------------
- unix {
- target.path = $${PREFIX}/lib/qtau/plugins
- INSTALLS += target
- }
|