mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-06-16 12:33:19 +02:00
Add appveyor Windows build configuration file
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
version: '{branch}-{build}'
|
||||
|
||||
build:
|
||||
verbosity: minimal
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- BUILD: 'Release'
|
||||
CONFIG: debug
|
||||
|
||||
install:
|
||||
- set QTDIR=C:\Qt\5.10.1\mingw53_32
|
||||
- set PATH=%PATH%;%QTDIR%\bin;C:\MinGW\bin
|
||||
|
||||
$msiPath = "$($env:USERPROFILE)\gstreamer-1.0-x86_64-1.12.4.msi"
|
||||
$gstreamerPath = "C:\gstreamer"
|
||||
(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)
|
||||
msiexec /i $msiPath /quiet /qn /norestart /log install.log TARGETDIR=$gstreamerPath"
|
||||
|
||||
$msiPath = "$($env:USERPROFILE)\gstreamer-1.0-devel-x86_64-1.12.4.msi"
|
||||
$gstreamerPath = "C:\gstreamer"
|
||||
(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)
|
||||
msiexec /i $msiPath /quiet /qn /norestart /log install.log TARGETDIR=$gstreamerPath"
|
||||
|
||||
build_script:
|
||||
- qmake mapmap.pro
|
||||
- mingw32-make
|
||||
Reference in New Issue
Block a user