From 2b02710a331a8c3c77f9e127c79ee62bc0aeb6e7 Mon Sep 17 00:00:00 2001 From: baydam Date: Thu, 22 Mar 2018 22:38:33 +0000 Subject: [PATCH] Update appveyor config file --- appveyor.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 31919f1..b61e48f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,18 +14,22 @@ install: - ps: | Write-Host "Installing GStreamer..." -ForegroundColor Cyan $msiPath = "$($env:USERPROFILE)\gstreamer-1.0-x86_64-1.12.4.msi" + $gstreamerPath = "C:\gstreamer" Write-Host "Downloading..." (New-Object Net.WebClient).DownloadFile('https://gstreamer.freedesktop.org/data/pkg/windows/1.12.4/gstreamer-1.0-x86_64-1.12.4.msi', $msiPath) Write-Host "Installing..." - cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL + cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL TARGETDIR=$gstreamerPath + Write-Host "Installed" -ForegroundColor Green - ps: | Write-Host "Installing GStreamer..." -ForegroundColor Cyan $msiPath = "$($env:USERPROFILE)\gstreamer-1.0-devel-x86_64-1.12.4.msi" + $gstreamerPath = "C:\gstreamer" Write-Host "Downloading..." (New-Object Net.WebClient).DownloadFile('https://gstreamer.freedesktop.org/data/pkg/windows/1.12.4/gstreamer-1.0-devel-x86_64-1.12.4.msi', $msiPath) Write-Host "Installing..." - cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL + cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL TARGETDIR=$gstreamerPath + Write-Host "Installed" -ForegroundColor Green build_script: - qmake mapmap.pro