ecantorix_synth.pro 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #-------------------------------------------------
  2. #-------------------------------------------------
  3. TEMPLATE = lib
  4. CONFIG += plugin
  5. TARGET = $$qtLibraryTarget(ecantorixsynth)
  6. #ecantorix2
  7. INCLUDEPATH += ../../editor ../ ../../tools
  8. LIBS += -Wl,--no-undefined
  9. PKGCONFIG += glib-2.0
  10. LIBS += -ljack -lsndfile -lsekai -lspeexdsp
  11. CONFIG += link_pkgconfig
  12. HEADERS += \
  13. ecantorix_synth.h \
  14. ../../tools/utauloid/oto.h \
  15. ../../editor/Utils.h \
  16. wavtool.h
  17. SOURCES += \
  18. ecantorix_synth.cpp \
  19. ../../editor/Utils.cpp \
  20. wavtool.cpp
  21. QMAKE_CXXFLAGS += -Wall -std=c++11
  22. #--------------------------------------------
  23. CONFIG(debug, debug|release) {
  24. COMPILEDIR = $${OUT_PWD}/../../debug
  25. } else {
  26. COMPILEDIR = $${OUT_PWD}/../../release
  27. }
  28. DESTDIR = $${COMPILEDIR}/plugins
  29. OBJECTS_DIR = $${COMPILEDIR}/ecantorixsynth/.obj
  30. MOC_DIR = $${COMPILEDIR}/ecantorixsynth/.moc
  31. RCC_DIR = $${COMPILEDIR}/ecantorixsynth/.rcc
  32. UI_DIR = $${COMPILEDIR}/ecantorixsynth/.ui
  33. #--------------------------------------------
  34. unix {
  35. target.path = $${PREFIX}/lib/qtau/plugins
  36. INSTALLS += target
  37. }