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-bridge-lv2-qt4.pro 1.3KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # QtCreator project file
  2. QT = core gui
  3. TARGET = carla-bridge-lv2-qt4
  4. TEMPLATE = app
  5. # -------------------------------------------------------
  6. CONFIG = debug
  7. CONFIG += link_pkgconfig qt warn_on
  8. DEFINES = DEBUG
  9. DEFINES += HAVE_CPP11_SUPPORT
  10. DEFINES += QTCREATOR_TEST
  11. DEFINES += BUILD_BRIDGE
  12. DEFINES += BUILD_BRIDGE_UI
  13. DEFINES += BRIDGE_LV2
  14. DEFINES += BRIDGE_QT4
  15. DEFINES += BRIDGE_LV2_QT4
  16. PKGCONFIG = liblo
  17. SOURCES = \
  18. ../CarlaBridgeClient.cpp \
  19. ../CarlaBridgeOsc.cpp \
  20. ../CarlaBridgeToolkit.cpp \
  21. ../CarlaBridgeToolkitQt.cpp \
  22. ../CarlaBridgeUI-LV2.cpp
  23. HEADERS = \
  24. ../CarlaBridge.hpp \
  25. ../CarlaBridgeClient.hpp \
  26. ../CarlaBridgeOsc.hpp \
  27. ../CarlaBridgeToolkit.hpp \
  28. ../../includes/CarlaDefines.hpp \
  29. ../../includes/CarlaMIDI.h \
  30. ../../includes/lv2_rdf.hpp \
  31. ../../utils/CarlaJuceUtils.hpp \
  32. ../../utils/CarlaLibUtils.hpp \
  33. ../../utils/CarlaLv2Utils.hpp \
  34. ../../utils/CarlaOscUtils.hpp \
  35. ../../utils/CarlaUtils.hpp \
  36. ../../utils/CarlaString.hpp \
  37. ../../utils/RtList.hpp
  38. INCLUDEPATH = .. \
  39. ../../includes \
  40. ../../libs \
  41. ../../theme \
  42. ../../utils
  43. LIBS = -ldl
  44. LIBS += ../../libs/lilv.a
  45. LIBS += ../../libs/rtmempool.a
  46. LIBS += ../../libs/theme.a
  47. QMAKE_CXXFLAGS *= -std=c++0x