mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
version: 13.23.{build}
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
image:
|
|
- Visual Studio 2022
|
|
|
|
environment:
|
|
NSISDIR: C:\Program Files (x86)\NSIS
|
|
matrix:
|
|
- QTDIR: C:\Qt\5.15\msvc2019_64
|
|
OPENSSLDIR: C:\OpenSSL-v111-Win64\bin
|
|
NSISDEF: /DOPENSSL /DANGLE
|
|
- QTDIR: C:\Qt\6.7\msvc2019_64
|
|
OPENSSLDIR: C:\OpenSSL-v32-Win64\bin
|
|
NSISDEF: /DQT6 /DOPENSSL
|
|
|
|
install:
|
|
- cmd: |-
|
|
set PATH=%QTDIR%\bin;%NSISDIR%;%PATH%
|
|
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat
|
|
|
|
build_script:
|
|
- cmd: |-
|
|
lrelease gpxsee.pro
|
|
qmake gpxsee.pro
|
|
nmake release
|
|
|
|
md installer
|
|
copy release\GPXSee.exe installer
|
|
windeployqt --release installer\GPXSee.exe
|
|
copy pkg\windows\gpxsee64.nsi installer
|
|
xcopy data\CRS installer\CRS /i
|
|
xcopy data\maps installer\maps /i
|
|
xcopy lang\*.qm installer\translations\ /sy
|
|
xcopy icons\symbols installer\symbols /i
|
|
copy licence.txt installer
|
|
copy %OPENSSLDIR%\libcrypto-*-x64.dll installer
|
|
copy %OPENSSLDIR%\libssl-*-x64.dll installer
|
|
|
|
makensis.exe %NSISDEF% installer\gpxsee64.nsi
|
|
|
|
artifacts:
|
|
- path: installer\GPXSee-*.exe
|