changeset 152:6ccb195d6de6

Fix some include paths, configure Vamp SDK without host
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 17:52:56 +0000
parents 255403a4b321
children e558e042d9c7
files .travis.yml vamp-client/qt/AutoPlugin.h vamp-client/qt/ProcessQtTransport.h
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.travis.yml	Fri Jan 20 17:46:56 2017 +0000
+++ b/.travis.yml	Fri Jan 20 17:52:56 2017 +0000
@@ -19,7 +19,7 @@
 before_install:
   - ( cd ../ ; git clone https://github.com/piper-audio/piper )
   - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk )
-  - ( cd ../vamp-plugin-sdk ; ./configure && make sdkstatic )
+  - ( cd ../vamp-plugin-sdk ; ./configure --disable-programs && make sdkstatic )
   - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto )
   - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i )
   - ( cd ../capnproto/c++ ; ./configure && make && sudo make install )
--- a/vamp-client/qt/AutoPlugin.h	Fri Jan 20 17:46:56 2017 +0000
+++ b/vamp-client/qt/AutoPlugin.h	Fri Jan 20 17:52:56 2017 +0000
@@ -37,7 +37,7 @@
 #define PIPER_AUTO_PLUGIN_H
 
 #include "ProcessQtTransport.h"
-#include "CapnpRRClient.h"
+#include "../CapnpRRClient.h"
 
 #include <cstdint>
 
--- a/vamp-client/qt/ProcessQtTransport.h	Fri Jan 20 17:46:56 2017 +0000
+++ b/vamp-client/qt/ProcessQtTransport.h	Fri Jan 20 17:52:56 2017 +0000
@@ -36,7 +36,7 @@
 #ifndef PIPER_PROCESS_QT_TRANSPORT_H
 #define PIPER_PROCESS_QT_TRANSPORT_H
 
-#include "SynchronousTransport.h"
+#include "../SynchronousTransport.h"
 
 #include <QProcess>
 #include <QString>