summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDreamer <dreamer.dead@gmail.com>2016-08-01 22:57:54 +0400
committerAndreas Schuh <andreas.schuh.84@gmail.com>2016-08-01 19:57:54 +0100
commitf0be9c88ca76763733eb6c706883ce704866bc67 (patch)
treed4adff4596d5873a7f4bf5811b1540896da38e1c
parent78cab6c649cadf3fe29d93643173326c98dde148 (diff)
downloadgflags-f0be9c88ca76763733eb6c706883ce704866bc67.tar.gz
gflags-f0be9c88ca76763733eb6c706883ce704866bc67.tar.bz2
gflags-f0be9c88ca76763733eb6c706883ce704866bc67.zip
Add initial AppVeyor config. (#161)
-rw-r--r--appveyor.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..758eb5c
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,31 @@
+# Configuration for continuous integration service at appveyor.com
+
+shallow_clone: true
+
+# Operating system (build VM template)
+os: Visual Studio 2015
+
+# scripts that are called at very beginning, before repo cloning
+init:
+
+# clone directory
+clone_folder: c:\projects\gflags
+
+matrix:
+ fast_finish: true
+
+install:
+ # show all available env vars
+ - set
+ - echo cmake on AppVeyor
+ - cmake -version
+ - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
+
+build_script:
+ - cd c:\projects\gflags
+ - mkdir out && cd out
+ - cmake -G "Visual Studio 14 2015"
+ -DCMAKE_BUILD_TYPE=Release
+ -DGFLAGS_BUILD_TESTING=True
+ ..
+ - msbuild gflags.sln /toolsversion:14.0 /p:PlatformToolset=v140