-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
49 lines (32 loc) · 1.05 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: 0.4.2.{build}
image: Visual Studio 2022
environment:
CC: cl.exe
CXX: cl.exe
install:
- cmd: >-
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
cd 3rdparty
mkdir build
mkdir download
mkdir install
cd build
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release -DEXTERNALS_DOWNLOAD_DIR=C:/projects/qt-heic-image-plugin/3rdparty/download -DINSTALL_ROOT=C:/projects/qt-heic-image-plugin/3rdparty/install
ninja
cd ..\..
build_script:
- cmd: >-
cd qtbuild_5.15.2
C:\Qt\5.15.2\msvc2019_64\bin\qmake.exe qt-heic-image-plugin_win64.pro
nmake.exe
cd ../qtbuild_6.5.3
C:\Qt\6.5.3\msvc2019_64\bin\qmake.exe qt-heic-image-plugin_win64.pro
nmake.exe
cd ../qtbuild_6.7.2
C:\Qt\6.7.2\msvc2019_64\bin\qmake.exe qt-heic-image-plugin_win64.pro
nmake.exe
artifacts:
- path: qtbuild_5.15.2\plugins\imageformats\*.dll
- path: qtbuild_6.5.3\*.dll
- path: qtbuild_6.7.2\*.dll
- path: 3rdparty\install\bin\*.dll