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.

56 lines
904B

  1. # QtCreator project file
  2. QT = core gui
  3. #CONFIG = debug
  4. CONFIG += link_pkgconfig qt warn_on
  5. CONFIG += dll shared
  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
  12. # WANT_LINUXSAMPLER
  13. # ZynAddSubFX
  14. DEFINES += WANT_ZYNADDSUBFX
  15. # Misc
  16. #DEFINES += WANT_SUIL
  17. PKGCONFIG = liblo fluidsynth
  18. #suil-0 linuxsampler
  19. TARGET = carla_plugin
  20. TEMPLATE = lib
  21. VERSION = 0.5.0
  22. SOURCES = \
  23. carla_plugin.cpp \
  24. carla_plugin_thread.cpp \
  25. carla_bridge.cpp \
  26. native.cpp \
  27. ladspa.cpp \
  28. dssi.cpp \
  29. lv2.cpp \
  30. vst.cpp \
  31. fluidsynth.cpp \
  32. linuxsampler.cpp
  33. HEADERS = \
  34. carla_plugin.hpp \
  35. carla_plugin_thread.hpp
  36. INCLUDEPATH = . \
  37. ../carla-backend \
  38. ../carla-engine \
  39. ../carla-includes \
  40. ../carla-native \
  41. ../carla-utils
  42. QMAKE_CXXFLAGS *= -std=c++0x