c@83: c@83: TEMPLATE = app c@83: c@83: CONFIG += qt stl c++11 exceptions console warn_on c@83: QT -= xml network gui widgets c@83: c@83: !win32 { c@83: QMAKE_CXXFLAGS += -Werror c@83: } c@83: c@83: OBJECTS_DIR = ../o c@83: MOC_DIR = ../o c@83: c@83: VAMPSDK_DIR = ../../vamp-plugin-sdk c@83: PIPER_DIR = ../../piper c@83: c@83: QMAKE_CXXFLAGS = -I$$VAMPSDK_DIR -I.. c@83: c@84: LIBS += -lcapnp -lkj -lvamp-hostsdk c@84: c@83: # Using the "console" CONFIG flag above should ensure this happens for c@83: # normal Windows builds, but this may be necessary when cross-compiling c@83: win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console c@137: c@137: macx*: CONFIG -= app_bundle c@137: c@83: TARGET = client c@83: c@83: SOURCES += \ c@90: client.cpp \ c@108: ../vamp-capnp/piper-capnp.cpp c@90: c@90: HEADERS += \ c@94: ProcessQtTransport.h \ c@96: CapnpRRClient.h \ c@94: Loader.h \ c@94: PluginClient.h \ c@94: PluginStub.h \ c@98: AutoPlugin.h \ c@90: SynchronousTransport.h c@90: c@83: