-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
32 lines (27 loc) · 787 Bytes
/
appveyor.yml
File metadata and controls
32 lines (27 loc) · 787 Bytes
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
build_script:
- echo Running cmake...
- mkdir build
- cd build
- set QTDIR=C:\Qt\5.8\msvc2015_64
- set PATH=%PATH%;%QTDIR%\bin
- cmake .. -G "Visual Studio 14 2015 Win64"
- cmake --build . --config Release
- mkdir Release\platforms
- mkdir Release\imageformats
- copy %QTDIR%\bin\Qt5Core.dll Release
- copy %QTDIR%\plugins\imageformats\* Release\imageformats
- copy %QTDIR%\plugins\platforms\qwindows.dll Release\platforms
- dir
after_build:
- 7z a TestIcCPP.zip Release\*
artifacts:
path: build\TestIcCPP.zip
name: testIcCPP_win
deploy:
description: 'AppVeyor build'
artifact: testIcCPP_win
auth_token:
secure: LDoltDSff/8u4l/GIIV2LWwtiS2fQATX8kTdJ1Kw7JeTa568+l27lFcpnUfiNgfk
provider: GitHub
on:
appveyor_repo_tag: true