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

44 lines
1.1 KiB
YAML
Raw Normal View History

2023-01-15 10:10:48 +01:00
version: 11.12.{build}
configuration:
- Release
image:
- Visual Studio 2019
2017-08-15 15:49:28 +02:00
environment:
2020-01-26 12:02:30 +01:00
NSISDIR: C:\Program Files (x86)\NSIS
2021-10-31 08:15:27 +01:00
OPENSSLDIR: C:\OpenSSL-v111-Win64\bin
2017-08-15 15:49:28 +02:00
matrix:
- QTDIR: C:\Qt\5.15\msvc2019_64
2022-10-08 15:38:36 +02:00
- QTDIR: C:\Qt\6.4\msvc2019_64
2021-01-09 13:06:31 +01:00
NSISDEF: /DQT6
2017-08-15 15:58:23 +02:00
2020-01-26 12:39:38 +01:00
install:
2021-08-04 23:51:24 +02:00
- cmd: |-
2020-01-26 12:49:47 +01:00
set PATH=%QTDIR%\bin;%NSISDIR%;%PATH%
2021-10-31 08:15:27 +01:00
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat
2020-01-26 11:40:38 +01:00
2017-08-15 15:49:28 +02:00
build_script:
2021-08-04 23:51:24 +02:00
- cmd: |-
2017-08-15 15:49:28 +02:00
lrelease gpxsee.pro
qmake gpxsee.pro
nmake release
md installer
copy release\GPXSee.exe installer
2021-04-18 23:49:21 +02:00
windeployqt --release installer\GPXSee.exe
copy pkg\windows\gpxsee64.nsi installer
xcopy pkg\common\csv installer\csv /i
xcopy pkg\common\maps installer\maps /i
xcopy lang\*.qm installer\translations\ /sy
2021-10-10 12:44:49 +02:00
xcopy icons\symbols installer\symbols /i
2017-08-15 15:49:28 +02:00
copy licence.txt installer
2021-10-31 08:15:27 +01:00
copy %OPENSSLDIR%\libcrypto-1_1-x64.dll installer
copy %OPENSSLDIR%\libssl-1_1-x64.dll installer
2017-08-15 15:49:28 +02:00
2021-10-31 08:15:27 +01:00
makensis.exe %NSISDEF% installer\gpxsee64.nsi
2021-08-04 23:51:24 +02:00
2017-08-15 15:49:28 +02:00
artifacts:
2020-01-26 11:40:38 +01:00
- path: installer\GPXSee-*.exe