From 3512c4f7262bd43226a54984626d7f8e8cbe2e56 Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Mon, 31 Aug 2015 17:11:48 +0200 Subject: [PATCH] CI: add appveyor YAML file --- appveyor.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..56f333c --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,22 @@ +version: 0.1_build{build} + +platform: x86 +configuration: Release + +clone_folder: c:\projects\gmio.git + +environment: + matrix: + - APPVEYOR_SHARED_LIBS: OFF + VisualStudioVersion: 12.0 + + - APPVEYOR_SHARED_LIBS: ON + VisualStudioVersion: 12.0 + +build: + +build_script: + - cmake --version + - cd c:\projects\gmio.git + - cmake -G "Visual Studio 12 2013" -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DCMAKE_DEBUG_POSTFIX=_d -DGMIO_BUILD_SHARED_LIBS=$(APPVEYOR_SHARED_LIBS) + - msbuild /p:Configuration=$(CONFIGURATION) /p:Platform="Win32" gmio.sln /verbosity:detailed /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" \ No newline at end of file