summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDreamer <dreamer.dead@gmail.com>2016-08-03 10:24:55 +0300
committerAndreas Schuh <andreas.schuh.84@gmail.com>2016-08-03 08:24:55 +0100
commit15394d356ce12267962abf8cc65da6835cc27de5 (patch)
tree67b64b6e61b368e7a9141a2011c4ac26fdb82c8d
parente58e5303d6184f9e4537dc99fb492066c6b2c7f3 (diff)
downloadgflags-15394d356ce12267962abf8cc65da6835cc27de5.tar.gz
gflags-15394d356ce12267962abf8cc65da6835cc27de5.tar.bz2
gflags-15394d356ce12267962abf8cc65da6835cc27de5.zip
Add shared library build to the AppVeyor CI config. (#167)
-rw-r--r--appveyor.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index bb68600..756e5cb 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -32,8 +32,10 @@ build_script:
- cd c:\projects\gflags
- mkdir out && cd out
- cmake -G "Visual Studio 14 2015"
- -DCMAKE_BUILD_TYPE=%configuration%
- -DGFLAGS_BUILD_TESTING=True
+ -D CMAKE_BUILD_TYPE=%configuration%
+ -D GFLAGS_BUILD_TESTING=ON
+ -D GFLAGS_BUILD_SHARED_LIBS=ON
+ -D GFLAGS_BUILD_STATIC_LIBS=ON
..
- cmake --build . --config %configuration%