From bff0028a330a52695f8adc28ccae151e067118f0 Mon Sep 17 00:00:00 2001
From: Nicolas Werner <nicolas.werner@hotmail.de>
Date: Fri, 17 Jan 2020 22:13:01 +0100
Subject: [PATCH] Try to fix interface includes in src dir cmake error

---
 .ci/script.sh | 4 ++--
 .travis.yml   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.ci/script.sh b/.ci/script.sh
index 61a01d951..d85ff63e5 100755
--- a/.ci/script.sh
+++ b/.ci/script.sh
@@ -22,7 +22,7 @@ if [ $TRAVIS_OS_NAME == linux ]; then
         -DBUILD_LIB_TESTS=ON \
         -DBUILD_SHARED_LIBS=ON \
 	-DHUNTER_ENABLED=ON \
-	-DHUNTER_ROOT=.deps \
+	-DHUNTER_ROOT=/tmp/.deps \
 	-DUSE_BUNDLED_OPENSSL=OFF \
         -DCOVERAGE=${COVERAGE} || true
     cmake --build build
@@ -37,7 +37,7 @@ if [ $TRAVIS_OS_NAME == osx ]; then
         -DBUILD_LIB_TESTS=OFF \
         -DBUILD_SHARED_LIBS=ON \
 	-DHUNTER_ENABLED=ON \
-	-DHUNTER_ROOT=.deps \
+	-DHUNTER_ROOT=/tmp/.deps \
 	-DUSE_BUNDLED_OPENSSL=OFF \
         -DUSE_BUNDLED_BOOST=OFF \
         -DUSE_BUNDLED_GTEST=OFF \
diff --git a/.travis.yml b/.travis.yml
index 4a979dae9..71eeb719c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -76,7 +76,7 @@ matrix:
 
 cache:
   directories:
-    - .deps
+    - /tmp/.deps
 
 install: ./.ci/install.sh
 
-- 
GitLab