-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
37 lines (28 loc) · 868 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
31
32
33
34
35
36
37
version: 1.0.{build}
os: Windows Server 2012 R2
configuration: Release
platform: x64
clone_folder: C:\kovel
install:
- ps: >-
git submodule init
git submodule update
mkdir wx
cd wx
Start-FileDownload ftp://ftp.wxwidgets.org/pub/3.0.0/binaries/wxMSW-3.0.0_vc120_x64_Dev.7z
Start-FileDownload ftp://ftp.wxwidgets.org/pub/3.0.0/wxWidgets-3.0.0_headers.7z
7z x *.7z
cd ..
before_build:
- cmd: >-
cd C:\kovel
cmake . -G "Visual Studio 12 2013 Win64" -DWX_UI=ON -DwxWidgets_ROOT_DIR="C:\kovel\wx" -DwxWidgets_LIB_DIR="C:\kovel\wx\lib\vc120_x64_dll" && exit 0
cmake . -G "Visual Studio 12 2013 Win64" -DWX_UI=ON -DwxWidgets_ROOT_DIR="C:\kovel\wx" -DwxWidgets_LIB_DIR="C:\kovel\wx\lib\vc120_x64_dll"
build:
project: Kovel.vcxproj
verbosity: normal
test: off
artifacts:
- path: '**\*.exe'
type: zip
name: Nightly