forked from TheZoc/ZPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
44 lines (27 loc) · 1.57 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
version: 1.0.{build}
image: Visual Studio 2015
configuration:
- Debug
- Release
platform:
- x86
- x64
install:
- ps: >-
git submodule update -q --init --recursive
.\libs\curl\projects\generate.bat vc14
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxWidgets-3.1.0-headers.7z" -outfile "wxWidgets-3.1.0-headers.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_x64_Dev.7z" -outfile "wxMSW-3.1.0_vc140_x64_Dev.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_Dev.7z" -outfile "wxMSW-3.1.0_vc140_Dev.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_ReleaseDLL.7z" -outfile "wxMSW-3.1.0_vc140_ReleaseDLL.7z"
Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.0/wxMSW-3.1.0_vc140_x64_ReleaseDLL.7z" -outfile "wxMSW-3.1.0_vc140_x64_ReleaseDLL.7z"
7z.exe x ".\wxWidgets-3.1.0-headers.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_x64_Dev.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_Dev.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_ReleaseDLL.7z" -o".\libs\wxWidgets"
7z.exe x ".\wxMSW-3.1.0_vc140_x64_ReleaseDLL.7z" -o".\libs\wxWidgets"
move ".\libs\wxWidgets\lib\vc140_x64_dll\" ".\libs\wxWidgets\lib\vc_x64_dll\"
move ".\libs\wxWidgets\lib\vc140_dll\" ".\libs\wxWidgets\lib\vc_dll\"
build:
project: .\ZPatcher.sln
verbosity: minimal