epr_synth.pro 993 B

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