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.2KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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_QT4
  14. PKGCONFIG = liblo
  15. SOURCES = \
  16. ../CarlaBridgeClient.cpp \
  17. ../CarlaBridgeOsc.cpp \
  18. ../CarlaBridgeToolkit.cpp \
  19. ../CarlaBridgeToolkitQt.cpp \
  20. ../CarlaBridgeUI-LV2.cpp
  21. HEADERS = \
  22. ../CarlaBridge.hpp \
  23. ../CarlaBridgeClient.hpp \
  24. ../CarlaBridgeOsc.hpp \
  25. ../CarlaBridgeToolkit.hpp \
  26. ../../includes/CarlaDefines.hpp \
  27. ../../includes/CarlaMIDI.h \
  28. ../../includes/lv2_rdf.hpp \
  29. ../../utils/CarlaJuceUtils.hpp \
  30. ../../utils/CarlaLibUtils.hpp \
  31. ../../utils/CarlaLv2Utils.hpp \
  32. ../../utils/CarlaOscUtils.hpp \
  33. ../../utils/CarlaUtils.hpp \
  34. ../../utils/CarlaString.hpp \
  35. ../../utils/RtList.hpp
  36. INCLUDEPATH = .. \
  37. ../../includes \
  38. ../../libs \
  39. ../../theme \
  40. ../../utils
  41. LIBS = -ldl
  42. LIBS += ../../libs/lilv.a
  43. LIBS += ../../libs/rtmempool.a
  44. LIBS += ../../libs/theme.a
  45. QMAKE_CXXFLAGS *= -std=c++0x