Collection of tools useful for audio production
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.

54 lines
895B

  1. # QtCreator project file
  2. QT = core gui
  3. CONFIG = debug
  4. CONFIG += static
  5. CONFIG += link_pkgconfig qt warn_on
  6. DEFINES = DEBUG
  7. DEFINES += QTCREATOR_TEST
  8. # Plugins
  9. DEFINES += WANT_LADSPA 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.hpp \
  33. carla_plugin_thread.hpp
  34. INCLUDEPATH = . \
  35. ../carla-backend \
  36. ../carla-engine \
  37. ../carla-includes \
  38. ../carla-native \
  39. ../carla-utils
  40. QMAKE_CXXFLAGS *= -std=c++0x