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.

carla-discovery.pro 911B

11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # QtCreator project file
  2. QT = core
  3. CONFIG = debug link_pkgconfig qt warn_on
  4. DEFINES = DEBUG
  5. DEFINES += WANT_LADSPA WANT_DSSI WANT_LV2 WANT_VST
  6. DEFINES += WANT_FLUIDSYNTH WANT_LINUXSAMPLER
  7. PKGCONFIG = fluidsynth linuxsampler
  8. TARGET = carla-discovery-qtcreator
  9. TEMPLATE = app
  10. VERSION = 0.5.0
  11. SOURCES = \
  12. carla-discovery.cpp
  13. HEADERS = \
  14. ../includes/carla_defines.hpp \
  15. ../includes/carla_midi.h \
  16. ../includes/ladspa_rdf.hpp \
  17. ../includes/lv2_rdf.hpp \
  18. ../backend/carla_backend.hpp \
  19. ../utils/carla_utils.hpp \
  20. ../utils/carla_juce_utils.hpp \
  21. ../utils/carla_lib_utils.hpp \
  22. ../utils/carla_ladspa_utils.hpp \
  23. ../utils/carla_lv2_utils.hpp \
  24. ../utils/carla_vst_utils.hpp
  25. INCLUDEPATH = \
  26. ../backend \
  27. ../includes \
  28. ../utils
  29. LIBS = \
  30. ../libs/lilv.a
  31. unix {
  32. LIBS += -ldl
  33. }
  34. mingw {
  35. LIBS += -static -mwindows
  36. }
  37. QMAKE_CXXFLAGS *= -std=c++0x