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

47 lines
1.2 KiB
YAML
Raw Normal View History

2024-01-02 22:05:56 +01:00
version: 13.15.{build}
configuration:
- Release
image:
2023-07-06 10:07:13 +02:00
- Visual Studio 2022
2017-08-15 15:49:28 +02:00
environment:
2020-01-26 12:02:30 +01:00
NSISDIR: C:\Program Files (x86)\NSIS
2017-08-15 15:49:28 +02:00
matrix:
- QTDIR: C:\Qt\5.15\msvc2019_64
2023-09-14 23:32:35 +02:00
OPENSSLDIR: C:\OpenSSL-v111-Win64\bin
OPENSSLVERSION: 1_1
2023-07-06 10:07:13 +02:00
- QTDIR: C:\Qt\6.5\msvc2019_64
2023-09-14 23:32:35 +02:00
OPENSSLDIR: C:\OpenSSL-v30-Win64\bin
OPENSSLVERSION: 3
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%
2023-07-06 10:19:26 +02:00
call "C:\Program Files\Microsoft Visual Studio\2022\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
2023-04-14 00:17:55 +02:00
xcopy data\CRS installer\CRS /i
2023-01-26 01:51:46 +01:00
xcopy data\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
2023-09-14 23:32:35 +02:00
copy %OPENSSLDIR%\libcrypto-%OPENSSLVERSION%-x64.dll installer
copy %OPENSSLDIR%\libssl-%OPENSSLVERSION%-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