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.

61 lines
1022B

  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 WANT_DSSI WANT_LV2 WANT_VST
  9. # Samplers
  10. DEFINES += WANT_FLUIDSYNTH WANT_LINUXSAMPLER
  11. # ZynAddSubFX
  12. DEFINES += WANT_ZYNADDSUBFX
  13. # Misc
  14. DEFINES += WANT_SUIL
  15. PKGCONFIG = liblo suil-0 fluidsynth linuxsampler
  16. TARGET = carla_plugin
  17. TEMPLATE = lib
  18. VERSION = 0.5.0
  19. SOURCES = \
  20. carla_plugin.cpp
  21. # carla_plugin_thread.cpp \
  22. # carla_bridge.cpp \
  23. # native.cpp \
  24. # ladspa.cpp \
  25. # dssi.cpp \
  26. # lv2.cpp \
  27. # vst.cpp \
  28. # fluidsynth.cpp \
  29. # linuxsampler.cpp
  30. HEADERS = \
  31. carla_plugin_internal.hpp \
  32. carla_plugin_thread.hpp
  33. HEADERS += \
  34. ../carla_backend.hpp \
  35. ../carla_engine.hpp \
  36. ../carla_native.h \
  37. ../carla_plugin.hpp
  38. INCLUDEPATH = . .. \
  39. ../../includes \
  40. ../../libs \
  41. ../../utils
  42. # FIXME
  43. INCLUDEPATH += \
  44. /opt/kxstudio/include
  45. QMAKE_CXXFLAGS *= -std=c++0x