Collection of tools useful for audio production
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.

36 lines
571B

  1. # QtCreator project file
  2. QT = core
  3. CONFIG = debug
  4. CONFIG += link_pkgconfig qt warn_on
  5. DEFINES = DEBUG
  6. DEFINES += WANT_LADSPA WANT_DSSI WANT_LV2 WANT_VST
  7. DEFINES += WANT_FLUIDSYNTH WANT_LINUXSAMPLER
  8. PKGCONFIG = fluidsynth linuxsampler
  9. TARGET = carla-discovery-native
  10. TEMPLATE = app
  11. VERSION = 0.5.0
  12. SOURCES = \
  13. carla-discovery.cpp
  14. INCLUDEPATH = \
  15. ../carla-backend \
  16. ../carla-includes \
  17. ../carla-utils
  18. LIBS = \
  19. ../carla-lilv/carla_lilv.a
  20. unix {
  21. LIBS += -ldl -lpthread
  22. }
  23. win {
  24. LIBS += -static -mwindows
  25. }
  26. QMAKE_CXXFLAGS *= -std=c++0x