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 1.5KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # QtCreator project file
  2. TARGET = carla-discovery-qtcreator
  3. TEMPLATE = app
  4. VERSION = 1.9
  5. # -------------------------------------------------------
  6. CONFIG = debug
  7. CONFIG += link_pkgconfig warn_on
  8. # -------------------------------------------------------
  9. DEFINES = DEBUG REAL_BUILD
  10. DEFINES += QTCREATOR_TEST
  11. DEFINES += HAVE_FLUIDSYNTH
  12. DEFINES += HAVE_LINUXSAMPLER
  13. DEFINES += HAVE_X11
  14. DEFINES += VESTIGE_HEADER
  15. DEFINES += WANT_ZYNADDSUBFX
  16. DEFINES += WANT_ZYNADDSUBFX_UI
  17. # -------------------------------------------------------
  18. PKGCONFIG = fluidsynth
  19. PKGCONFIG += linuxsampler
  20. # -------------------------------------------------------
  21. LIBS = ../modules/juce_core.a
  22. LIBS += ../modules/lilv.a
  23. LIBS += -ldl
  24. # -------------------------------------------------------
  25. SOURCES = \
  26. carla-discovery.cpp
  27. HEADERS = \
  28. ../backend/CarlaBackend.hpp
  29. HEADERS += \
  30. ../includes/CarlaDefines.hpp \
  31. ../includes/CarlaMIDI.h
  32. HEADERS += \
  33. ../modules/ladspa_rdf.hpp \
  34. ../modules/lv2_rdf.hpp
  35. HEADERS += \
  36. ../utils/CarlaUtils.hpp \
  37. ../utils/CarlaBackendUtils.hpp \
  38. ../utils/CarlaLibUtils.hpp \
  39. ../utils/CarlaMathUtils.hpp \
  40. ../utils/CarlaLadspaUtils.hpp \
  41. ../utils/CarlaDssiUtils.hpp \
  42. ../utils/CarlaLv2Utils.hpp \
  43. ../utils/CarlaVstUtils.hpp
  44. INCLUDEPATH = \
  45. ../backend \
  46. ../includes \
  47. ../modules \
  48. ../utils
  49. # -------------------------------------------------------
  50. QMAKE_CXXFLAGS *= -std=c++11
  51. # -------------------------------------------------------