aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--appveyor.yml10
2 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 89912f6..04e410c 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,6 @@
[![Version][version_badge]][version]
[![Build Status][build_status]][build]
+[![Build Status - Windows][build_status_win]][build_win]
SubHook is a super-simple hooking library for C/C++ that works on Linux and
Windows. It currently supports x86 and x86-64.
@@ -104,3 +105,5 @@ int main() {
[version_badge]: https://badge.fury.io/gh/zeex%2Fsubhook.svg
[build]: https://travis-ci.org/Zeex/subhook
[build_status]: https://travis-ci.org/Zeex/subhook.svg?branch=master
+[build_win]: https://ci.appveyor.com/project/Zeex/subhook/branch/master
+[build_status_win]: https://ci.appveyor.com/api/projects/status/q5sp0p8ahuqfh8e4/branch/master?svg=true
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..6dc12b4
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,10 @@
+version: '{build}'
+
+configuration:
+ - Release
+
+before_build:
+ - cmake .
+
+build_script:
+ - cmake --build . --config %CONFIGURATION%