From 9706b75cfb7378ecb081b73ec61a7a70f265c8ed Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Tue, 21 Jul 2015 13:40:04 +0200 Subject: [PATCH] install ninja before we use it --- ci/appveyor.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/appveyor.ps1 b/ci/appveyor.ps1 index f190dc3..7c6e0d3 100644 --- a/ci/appveyor.ps1 +++ b/ci/appveyor.ps1 @@ -57,16 +57,16 @@ if ( !(Test-Path "$env:APPVEYOR_BUILD_FOLDER\work\install" ) ) mkdir $env:APPVEYOR_BUILD_FOLDER\work\install mkdir $env:APPVEYOR_BUILD_FOLDER\work\git + Start-FileDownload https://github.com/martine/ninja/releases/download/v1.6.0/ninja-win.zip + 7za e ninja-win.zip -o$INSTALL_DIR + rm ninja-win.zip + cd $env:APPVEYOR_BUILD_FOLDER\work\git git clone -q git://anongit.kde.org/extra-cmake-modules.git cd $env:APPVEYOR_BUILD_FOLDER\work\build\extra-cmake-modules cmake -G"Ninja" $env:APPVEYOR_BUILD_FOLDER\work\git\extra-cmake-modules -DCMAKE_INSTALL_PREFIX="$CMAKE_INSTALL_ROOT" ninja install - - Start-FileDownload https://github.com/martine/ninja/releases/download/v1.6.0/ninja-win.zip - 7za e ninja-win.zip -o$INSTALL_DIR - rm ninja-win.zip }