diff options
Diffstat (limited to 'deps/md4c/appveyor.yml')
-rw-r--r-- | deps/md4c/appveyor.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/deps/md4c/appveyor.yml b/deps/md4c/appveyor.yml new file mode 100644 index 0000000..d4bcaff --- /dev/null +++ b/deps/md4c/appveyor.yml @@ -0,0 +1,29 @@ +# YAML definition for Appveyor.com continuous integration. +# See http://www.appveyor.com/docs/appveyor-yml + +version: '{branch}-{build}' + +before_build: + - 'cmake --version' + - 'if "%PLATFORM%"=="x64" cmake -G "Visual Studio 12 Win64" .' + - 'if not "%PLATFORM%"=="x64" cmake -G "Visual Studio 12" .' + +build: + project: md4c.sln + verbosity: detailed + +skip_tags: true + +os: + - Windows Server 2012 R2 + +configuration: + - Debug + - Release + +platform: + - x64 # 64-bit build + - win32 # 32-bit build + +artifacts: + - path: $(configuration)/md2html/md2html.exe |