comparison 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
comparison
equal deleted inserted replaced
149:70bf40743d6a 150:bf8e3e7dd7de
1
2 TEMPLATE = app
3
4 CONFIG += qt stl c++11 exceptions console warn_on
5 QT -= xml network gui widgets
6
7 !win32 {
8 QMAKE_CXXFLAGS += -Werror
9 }
10
11 OBJECTS_DIR = ../o
12 MOC_DIR = ../o
13
14 VAMPSDK_DIR = ../../../vamp-plugin-sdk
15 PIPER_DIR = ../../../piper
16
17 QMAKE_CXXFLAGS = -I$$VAMPSDK_DIR -I.. -I../..
18
19 LIBS += -lcapnp -lkj -lvamp-hostsdk
20
21 # Using the "console" CONFIG flag above should ensure this happens for
22 # normal Windows builds, but this may be necessary when cross-compiling
23 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console
24
25 macx*: CONFIG -= app_bundle
26
27 TARGET = test
28
29 SOURCES += \
30 test.cpp \
31 ../../vamp-capnp/piper-capnp.cpp
32
33 HEADERS += \
34 ProcessQtTransport.h \
35 AutoPlugin.h \
36 ../CapnpRRClient.h \
37 ../Loader.h \
38 ../PluginClient.h \
39 ../PluginStub.h \
40 ../SynchronousTransport.h
41
42