nheko/appveyor.yml

33 lines
650 B
YAML
Raw Normal View History

2017-04-09 16:09:22 +02:00
version: 0.1.0-{build}
environment:
global:
MSYSTEM: "MINGW64"
platform: x64
configuration:
- Release
build:
verbosity: minimal
install:
- set QT_DIR=C:\Qt\5.8\msvc2015_64
- set PATH=%PATH%;%QT_DIR%\bin;C:\MinGW\bin
build_script:
2017-04-24 22:28:19 +02:00
- cmake -G "Visual Studio 14 2015 Win64" -H. -Bbuild
- cmake --build build --config Release
2017-04-09 16:09:22 +02:00
- ls -lh build
after_build:
- mkdir NhekoRelease
2017-04-24 22:28:19 +02:00
- copy build\Release\nheko.exe NhekoRelease\nheko.exe
2017-04-09 16:09:22 +02:00
- windeployqt --release NhekoRelease\nheko.exe
- 7z a nheko_win_64.zip .\NhekoRelease\*
artifacts:
- path: nheko_win_64.zip
- path: NhekoRelease\nheko.exe