Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1009B

  1. # QtCreator project file
  2. QT = core gui
  3. CONFIG = debug
  4. CONFIG += link_pkgconfig qt shared warn_on
  5. DEFINES = DEBUG
  6. DEFINES += QTCREATOR_TEST
  7. # Plugins
  8. DEFINES += WANT_LADSPA
  9. # WANT_DSSI WANT_LV2 WANT_VST
  10. # Samplers
  11. #DEFINES += WANT_FLUIDSYNTH WANT_LINUXSAMPLER
  12. # ZynAddSubFX
  13. DEFINES += WANT_ZYNADDSUBFX
  14. # Misc
  15. DEFINES += WANT_SUIL
  16. PKGCONFIG = liblo suil-0 fluidsynth linuxsampler
  17. TARGET = carla_plugin
  18. TEMPLATE = lib
  19. VERSION = 0.5.0
  20. SOURCES = \
  21. carla_plugin.cpp \
  22. carla_plugin_thread.cpp \
  23. carla_bridge.cpp \
  24. native.cpp \
  25. ladspa.cpp \
  26. dssi.cpp \
  27. lv2.cpp \
  28. vst.cpp \
  29. fluidsynth.cpp \
  30. linuxsampler.cpp
  31. HEADERS = \
  32. carla_plugin_internal.hpp \
  33. carla_plugin_thread.hpp
  34. HEADERS += \
  35. ../carla_backend.hpp \
  36. ../carla_engine.hpp \
  37. ../carla_native.h \
  38. ../carla_plugin.hpp
  39. INCLUDEPATH = . .. \
  40. ../../includes \
  41. ../../libs \
  42. ../../utils
  43. # FIXME
  44. INCLUDEPATH += \
  45. /opt/kxstudio/include
  46. QMAKE_CXXFLAGS *= -std=c++0x