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.

53 lines
959B

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