view vamp-client/client.pro @ 93:fbce91785d35

Having a class called PipedXX is too confusing with all the Piper classes; give up and rename it
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 12:07:41 +0100
parents 21f8af53eaf0
children a660dca988f8
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 += \
        PiperQProcessTransport.h \
        PiperCapnpClient.h \
        PiperClient.h \
        PiperPluginStub.h \
        SynchronousTransport.h