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.

52 lines
923B

  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_lib_utils.hpp \
  26. ../utils/carla_ladspa_utils.hpp \
  27. ../utils/carla_lv2_utils.hpp \
  28. ../utils/carla_vst_utils.hpp
  29. INCLUDEPATH = \
  30. ../backend \
  31. ../includes \
  32. ../utils
  33. LIBS = \
  34. ../libs/lilv.a
  35. unix {
  36. LIBS += -ldl
  37. }
  38. mingw {
  39. LIBS += -static -mwindows
  40. }
  41. QMAKE_CXXFLAGS *= -std=c++0x