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_native.pro 898B

11 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # QtCreator project file
  2. QT = core gui
  3. CONFIG = debug
  4. CONFIG += link_pkgconfig qt shared warn_on
  5. DEFINES = DEBUG
  6. DEFINES += QTCREATOR_TEST
  7. # ZynAddSubFX
  8. DEFINES += WANT_ZYNADDSUBFX
  9. PKGCONFIG = fftw3 mxml
  10. TARGET = carla_native
  11. TEMPLATE = lib
  12. VERSION = 0.5.0
  13. SOURCES = \
  14. bypass.c \
  15. midi-split.c \
  16. midi-through.c \
  17. zynaddsubfx.cpp \
  18. zynaddsubfx-src.cpp
  19. SOURCES += \
  20. distrho-3bandeq.cpp
  21. HEADERS = \
  22. ../carla_native.h \
  23. ../carla_native.hpp
  24. HEADERS += \
  25. distrho/DistrhoPluginCarla.cpp
  26. HEADERS += \
  27. ../../includes/carla_defines.hpp \
  28. ../../includes/carla_midi.h \
  29. ../../utils/carla_utils.hpp \
  30. ../../utils/carla_juce_utils.hpp
  31. INCLUDEPATH = . .. \
  32. 3bandeq distrho \
  33. ../../includes \
  34. ../../utils \
  35. ../../libs/distrho-plugin-toolkit
  36. LIBS = -lGL -lpthread
  37. QMAKE_CFLAGS *= -std=c99
  38. QMAKE_CXXFLAGS *= -std=c++0x