1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00
GPXSee/.appveyor.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

2017-09-29 11:44:44 +02:00
version: 4.15.{build}
2017-08-15 15:49:28 +02:00
configuration: Release
platform: Any CPU
environment:
NSISDIR: C:\Program Files (x86)\NSIS
matrix:
- QTDIR: C:\Qt\5.9\msvc2015
PLATFORM: x86
NSI: gpxsee.nsi
OPENSSLDIR: C:\OpenSSL-Win32\bin
- QTDIR: C:\Qt\5.9\msvc2015_64
PLATFORM: x86_amd64
NSI: gpxsee64.nsi
OPENSSLDIR: C:\OpenSSL-Win64\bin
install:
- cmd: >-
set PATH=%QTDIR%\bin;%NSISDIR%;%PATH%
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
build_script:
- cmd: >-
lrelease gpxsee.pro
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
qmake gpxsee.pro
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
nmake release
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
md installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy release\GPXSee.exe installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
windeployqt --no-svg --release installer\GPXSee.exe
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy pkg\%NSI% installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy pkg\datums.csv installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy pkg\ellipsoids.csv installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy pkg\maps.txt installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy licence.txt installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy %OPENSSLDIR%\libeay32.dll installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
copy %OPENSSLDIR%\ssleay32.dll installer
2017-08-15 15:58:23 +02:00
2017-08-15 15:49:28 +02:00
makensis.exe installer\%NSI%
artifacts:
- path: installer\GPXSee-*.exe