Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemigiusz Kołłątaj <remigiusz.kollataj@gmail.com>2017-06-09 20:11:29 +0300
committerRemigiusz Kołłątaj <remigiusz.kollataj@gmail.com>2017-06-09 20:11:29 +0300
commit2e84ca4fa42e2a36d30b5bfcb4022b26dd76dea8 (patch)
tree91b1eaee636b0531b7f5e68a638c76518dae453e /appveyor.yml
parent9470bdd3ec21c1158d066e49f724ed1dfcd1e698 (diff)
Adding additional build environments for AppVeyor
Signed-off-by: Remigiusz Kołłątaj <remigiusz.kollataj@gmail.com>
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 00000000..2a176c1b
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,32 @@
+version: 1.0.{build}
+image: Visual Studio 2015
+environment:
+ matrix:
+ - GENERATOR: '"MinGW Makefiles"'
+ BUILD_TYPE: Debug
+ - GENERATOR: '"MinGW Makefiles"'
+ BUILD_TYPE: Release
+ - GENERATOR: '"Visual Studio 14 2015"'
+ BUILD_TYPE: Debug
+ - GENERATOR: '"Visual Studio 14 2015"'
+ BUILD_TYPE: Release
+ - GENERATOR: '"Visual Studio 14 2015 Win64"'
+ BUILD_TYPE: Debug
+ - GENERATOR: '"Visual Studio 14 2015 Win64"'
+ BUILD_TYPE: Release
+build_script:
+- cmd: >-
+ set
+
+ mkdir build
+
+ cd build
+
+ set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
+
+ set PATH=C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin;%PATH%
+
+ cmake .. -G %GENERATOR% -DCMAKE_BUILD_TYPE=%BUILD_TYPE%
+
+ cmake --build . --config %BUILD_TYPE%
+test: off