Skip to content

Commit

Permalink
Added Appveyor hook
Browse files Browse the repository at this point in the history
Updated .gitignore
  • Loading branch information
TheZoc committed Jun 7, 2016
1 parent ca1f721 commit 6f3c05b
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Ignore wxWidgets binaries
wxWidgets/

# Ignore TinyXML2 32-bits output directories
Debug-Dll/
Release-Dll/

# Program-generated files to be ignored

# User-specific files
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Build Status](https://travis-ci.org/TheZoc/ZPatcher.svg?branch=master)](https://travis-ci.org/TheZoc/ZPatcher)
[![Build status](https://ci.appveyor.com/api/projects/status/i6kr70f4x40bero5/branch/master?svg=true)](https://ci.appveyor.com/project/TheZoc/zpatcher/branch/master)

# ZPatcher

Expand Down
37 changes: 37 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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
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"
7z.exe x ".\wxWidgets-3.1.0-headers.7z" -o".\libs\wxWidgets"
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"
7z.exe x ".\wxMSW-3.1.0_vc140_x64_Dev.7z" -o".\libs\wxWidgets"
move ".\libs\wxWidgets\lib\vc140_x64_dll\" ".\libs\wxWidgets\lib\vc_x64_dll\"
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"
7z.exe x ".\wxMSW-3.1.0_vc140_Dev.7z" -o".\libs\wxWidgets"
move ".\libs\wxWidgets\lib\vc140_dll\" ".\libs\wxWidgets\lib\vc_dll\"
build:
project: .\ZPatcher.sln
verbosity: minimal

0 comments on commit 6f3c05b

Please sign in to comment.