From e96d0286b891575b01b9b02e994da749139980bc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Matthias=20Bartelme=C3=9F?= <mba@fourplusone.de>
Date: Sun, 3 Jul 2016 15:41:23 +0200
Subject: [PATCH] Create appveyor.yml

---
 appveyor.yml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 appveyor.yml

diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..83ef925
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,19 @@
+version: 1.0.{build}
+image: Visual Studio 2015
+configuration: Release
+build_script:
+- cmd: |
+    set LIBGIT2=%APPVEYOR_BUILD_FOLDER%\build\libgit2
+    git clone --depth=1 -b maint/v0.24 https://github.com/libgit2/libgit2.git libgit2
+    mkdir build
+    
+    pushd build
+    cmake -DSTDCALL=OFF -DBUILD_CLAR=OFF -DCMAKE_INSTALL_PREFIX=%LIBGIT2% ../libgit2 -G"Visual Studio 11 Win64"
+    cmake --build . --config Release --target install
+    popd
+    
+    C:\Python35-x64\Scripts\pip.exe install wheel
+    C:\Python35-x64\python.exe setup.py bdist_wheel 
+  
+artifacts:
+- path: build\*