view vamp-client/client.pro @ 96:215c9fb6b7a4

Rename to CapnpRRClient (request-response, as opposed to individual RPC calls)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 17:00:06 +0100
parents a660dca988f8
children f55631599988
line wrap: on
line source

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..

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
    
TARGET = client

SOURCES += \
        client.cpp \
        ../vamp-capnp/piper.capnp.c++
        
HEADERS += \
        ProcessQtTransport.h \
        CapnpRRClient.h \
        Loader.h \
        PluginClient.h \
        PluginStub.h \
        SynchronousTransport.h