From: Dreamer Date: Wed, 3 Aug 2016 07:24:55 +0000 (+0300) Subject: Add shared library build to the AppVeyor CI config. (#167) X-Git-Tag: accepted/tizen/5.0/unified/20181102.024438~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15394d356ce12267962abf8cc65da6835cc27de5;p=platform%2Fupstream%2Fgflags.git Add shared library build to the AppVeyor CI config. (#167) --- 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%