Mercurial > hg > piper-cpp
comparison vamp-client/client.pro @ 83:154e94ea84d4
Toward QProcess pipe comms take on it
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Tue, 11 Oct 2016 17:08:31 +0100 |
parents | |
children | db9a6ab618bc |
comparison
equal
deleted
inserted
replaced
82:fa2c0358c2b6 | 83:154e94ea84d4 |
---|---|
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.. | |
18 | |
19 # Using the "console" CONFIG flag above should ensure this happens for | |
20 # normal Windows builds, but this may be necessary when cross-compiling | |
21 win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console | |
22 | |
23 TARGET = client | |
24 | |
25 SOURCES += \ | |
26 client.cpp | |
27 |