summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-06-28 18:23:32 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-06-28 18:23:32 +0200
commit88014e38bce2139d6b30f996d1874041349cdd7b (patch)
treee5966a2b28e79ddcb5b41d2484c409f35cf07e36 /.appveyor.yml
parent7c6bb6e21d3fcc623b3b912683be30106f940426 (diff)
Fixes bug in AppVeyor with install directory
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 85e9e20f..14b296eb 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -48,7 +48,8 @@ before_build:
- ps: mkdir $env:CLBLAST_INSTALL
- ps: mkdir $env:CLBLAST_ROOT
- ps: pushd $env:CLBLAST_ROOT
- - cmake -G "Visual Studio 14 Win64" -DCMAKE_INSTALL_PREFIX=$env:CLBLAST_INSTALL -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DTESTS=ON -DCLIENTS=ON -DSAMPLES=ON %APPVEYOR_BUILD_FOLDER%
+ - set INSTALL_PATH=$env:CLBLAST_INSTALL
+ - cmake -G "Visual Studio 14 Win64" -DCMAKE_INSTALL_PREFIX=%INSTALL_PATH% -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DTESTS=ON -DCLIENTS=ON -DSAMPLES=ON %APPVEYOR_BUILD_FOLDER%
build_script:
- cmake --build .