diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vamp-client/client.pro	Tue Oct 11 17:08:31 2016 +0100
@@ -0,0 +1,27 @@
+
+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..
+
+# 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
+