-
Notifications
You must be signed in to change notification settings - Fork 64
/
appveyor.yml
38 lines (32 loc) · 1.43 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: '{branch}-{build}'
build:
verbosity: minimal
environment:
matrix:
- BUILD: 'Release'
CONFIG: debug
install:
- set QTDIR=C:\Qt\5.14.1\mingw73_32
- set PATH=%PATH%;%QTDIR%\bin;C:\MinGW\bin
- ps: |
Write-Host "Installing GStreamer..." -ForegroundColor Cyan
$msiPath = "$($env:USERPROFILE)\gstreamer-1.0-mingw-x86-1.16.2.msi"
$gstreamerPath = "C:\"
Write-Host "Downloading..."
(New-Object Net.WebClient).DownloadFile('https://gstreamer.freedesktop.org/data/pkg/windows/1.16.2/gstreamer-1.0-mingw-x86-1.16.2.msi', $msiPath)
Write-Host "Installing..."
cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL TARGETDIR=$gstreamerPath
Write-Host "Installed" -ForegroundColor Green
- ps: |
Write-Host "Installing GStreamer Devel..." -ForegroundColor Cyan
$msiPath = "$($env:USERPROFILE)\gstreamer-1.0-devel-mingw-x86-1.16.2.msi"
$gstreamerPath = "C:\"
Write-Host "Downloading..."
(New-Object Net.WebClient).DownloadFile('https://gstreamer.freedesktop.org/data/pkg/windows/1.16.2/gstreamer-1.0-devel-mingw-x86-1.16.2.msi', $msiPath)
Write-Host "Installing..."
cmd /c start /wait msiexec /package $msiPath /passive ADDLOCAL=ALL TARGETDIR=$gstreamerPath
Write-Host "Installed" -ForegroundColor Green
- set GSTREAMER_1_0_ROOT_X86=C:\gstreamer\1.0\x86
build_script:
- C:\Qt\5.14.1\mingw73_32\bin\qmake.exe mapmap.pro
- mingw32-make