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.

58 lines
1.1KB

  1. # QtCreator project file
  2. QT = core
  3. TARGET = carla-discovery-qtcreator
  4. TEMPLATE = app
  5. VERSION = 0.5.0
  6. # -------------------------------------------------------
  7. CONFIG = debug
  8. CONFIG += link_pkgconfig qt shared warn_on
  9. DEFINES = DEBUG
  10. DEFINES += QTCREATOR_TEST
  11. DEFINES += WANT_LADSPA
  12. DEFINES += WANT_DSSI
  13. DEFINES += WANT_LV2
  14. DEFINES += WANT_VST
  15. DEFINES += WANT_FLUIDSYNTH
  16. DEFINES += WANT_LINUXSAMPLER
  17. PKGCONFIG = fluidsynth
  18. PKGCONFIG += linuxsampler
  19. SOURCES = \
  20. carla-discovery.cpp
  21. # -------------------------------------------------------
  22. HEADERS = \
  23. ../backend/CarlaBackend.hpp
  24. HEADERS += \
  25. ../includes/CarlaDefines.hpp \
  26. ../includes/CarlaMIDI.h \
  27. ../includes/ladspa_rdf.hpp \
  28. ../includes/lv2_rdf.hpp \
  29. ../utils/CarlaUtils.hpp \
  30. ../utils/CarlaBase64Utils.hpp \
  31. ../utils/CarlaJuceUtils.hpp \
  32. ../utils/CarlaLibUtils.hpp \
  33. ../utils/CarlaLadspaUtils.hpp \
  34. ../utils/CarlaLv2Utils.hpp \
  35. ../utils/CarlaVstUtils.hpp \
  36. ../utils/CarlaString.hpp
  37. INCLUDEPATH = \
  38. ../backend \
  39. ../includes \
  40. ../utils
  41. LIBS = -ldl
  42. LIBS += ../libs/lilv.a
  43. QMAKE_CXXFLAGS *= -std=c++0x