-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
30 lines (26 loc) · 928 Bytes
/
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
version: unstable-{build}
image: Visual Studio 2017
clone_folder: C:\azalea
platform: x86
configuration: Debug
build_script:
- '"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x86'
- mkdir azalea-bin-windows
- mkdir build
- cd build
- cmake .. -DCMAKE_PREFIX_PATH="C:\Qt\5.13\msvc2017\lib\cmake" -G"NMake Makefiles" -DCMAKE_INSTALL_PREFIX="C:\azalea\azalea-bin-windows" -DCMAKE_BUILD_TYPE="Release"
- nmake
- nmake install
- 'copy "C:\OpenSSL-v111-Win32\bin\lib*.dll" "C:\azalea\azalea-bin-windows"'
artifacts:
- path: azalea-bin-windows
name: azalea-bin-windows
deploy:
- provider: GitHub
artifact: /^azalea-bin-windows/
prerelease: true
repository: unstabler/Azalea
auth_token:
secure: aYT8TQoY5LREybjze6yoozyrNvfPH24wHH96tLnuFD6bLUazqG8S3Kdego0r3mBh
on:
APPVEYOR_REPO_TAG: true