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.

47 lines
850B

  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. DEFINES += WANT_LADSPA WANT_DSSI WANT_LV2 WANT_VST
  9. DEFINES += WANT_ZYNADDSUBFX
  10. DEFINES += WANT_SUIL
  11. DEFINES += WANT_FLUIDSYNTH WANT_LINUXSAMPLER
  12. PKGCONFIG = liblo suil-0 fluidsynth linuxsampler
  13. TARGET = carla_plugin
  14. TEMPLATE = lib
  15. VERSION = 0.5.0
  16. SOURCES = \
  17. carla_plugin.cpp \
  18. carla_plugin_thread.cpp \
  19. carla_bridge.cpp \
  20. native.cpp \
  21. ladspa.cpp \
  22. dssi.cpp \
  23. lv2.cpp \
  24. vst.cpp \
  25. fluidsynth.cpp \
  26. linuxsampler.cpp
  27. HEADERS = \
  28. carla_plugin.hpp \
  29. carla_plugin_thread.hpp
  30. INCLUDEPATH = . \
  31. ../carla-backend \
  32. ../carla-engine \
  33. ../carla-includes \
  34. ../carla-native \
  35. ../carla-utils
  36. QMAKE_CXXFLAGS *= -std=c++0x