Chris@1297: Chris@1297: TEMPLATE = app Chris@1297: Chris@1297: CONFIG += stl c++11 exceptions console warn_on Chris@1297: Chris@1297: CONFIG -= qt Chris@1297: Chris@1297: exists(config.pri) { Chris@1297: include(config.pri) Chris@1297: } Chris@1297: Chris@1297: !exists(config.pri) { Chris@1297: include(noconfig.pri) Chris@1297: Chris@1297: macx*: LIBS -= -framework CoreAudio -framework CoreMidi -framework AudioUnit -framework AudioToolbox -framework CoreFoundation -framework CoreServices -framework Accelerate -lbz2 -lz Chris@1297: } Chris@1297: Chris@1301: # Can't support this flag with the JSON11 and basen modules as they stand Chris@1301: QMAKE_CXXFLAGS -= -Werror Chris@1301: Chris@1297: # Using the "console" CONFIG flag above should ensure this happens for Chris@1297: # normal Windows builds, but this may be necessary when cross-compiling Chris@1297: win32-x-g++: QMAKE_LFLAGS += -Wl,-subsystem,console Chris@1297: Chris@1297: macx*: CONFIG -= app_bundle Chris@1297: Chris@1297: linux*: LIBS += -ldl Chris@1297: Chris@1297: TARGET = piper-convert Chris@1297: Chris@1297: OBJECTS_DIR = o Chris@1297: MOC_DIR = o Chris@1297: Chris@1560: INCLUDEPATH += piper-cpp piper-cpp/ext vamp-plugin-sdk Chris@1297: Chris@1297: include(vamp-plugin-sdk-files.pri) Chris@1297: Chris@1297: for (file, VAMP_SOURCES) { SOURCES += $$file } Chris@1297: for (file, VAMP_HEADERS) { HEADERS += $$file } Chris@1297: Chris@1297: HEADERS += \ Chris@1297: piper-cpp/vamp-capnp/piper.capnp.h \ Chris@1297: piper-cpp/vamp-capnp/VampnProto.h Chris@1297: Chris@1297: SOURCES += \ Chris@1297: piper-cpp/vamp-capnp/piper-capnp.cpp \ Chris@1560: piper-cpp/ext/json11/json11.cpp \ Chris@1297: piper-cpp/vamp-server/convert.cpp