Mercurial > hg > piper-cpp
diff vamp-client/qt/test.pro @ 150:bf8e3e7dd7de
Move some things around, and add overall test script
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 20 Jan 2017 17:45:54 +0000 |
parents | |
children | 9833a9b54134 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vamp-client/qt/test.pro Fri Jan 20 17:45:54 2017 +0000 @@ -0,0 +1,42 @@ + +TEMPLATE = app + +CONFIG += qt stl c++11 exceptions console warn_on +QT -= xml network gui widgets + +!win32 { + QMAKE_CXXFLAGS += -Werror +} + +OBJECTS_DIR = ../o +MOC_DIR = ../o + +VAMPSDK_DIR = ../../../vamp-plugin-sdk +PIPER_DIR = ../../../piper + +QMAKE_CXXFLAGS = -I$$VAMPSDK_DIR -I.. -I../.. + +LIBS += -lcapnp -lkj -lvamp-hostsdk + +# Using the "console" CONFIG flag above should ensure this happens for +# normal Windows builds, but this may be necessary when cross-compiling +win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console + +macx*: CONFIG -= app_bundle + +TARGET = test + +SOURCES += \ + test.cpp \ + ../../vamp-capnp/piper-capnp.cpp + +HEADERS += \ + ProcessQtTransport.h \ + AutoPlugin.h \ + ../CapnpRRClient.h \ + ../Loader.h \ + ../PluginClient.h \ + ../PluginStub.h \ + ../SynchronousTransport.h + +