• source navigation  • diff markup  • identifier search  • freetext search  • 

Sources/json-c/appveyor.yml

  1 version: '{branch}.{build}'
  2 os: Windows Server 2012 R2
  3 
  4 platform: x64
  5 
  6 # There should be a better way to set-up a build matrix.
  7 environment:
  8   matrix:
  9     - b_toolset: Windows7.1SDK
 10       b_config: Debug
 11 
 12     - b_toolset: Windows7.1SDK
 13       b_config: Release
 14 
 15     - b_toolset: v120
 16       b_config: Debug
 17 
 18     - b_toolset: v120
 19       b_config: Release
 20 
 21     - b_toolset: v140
 22       b_config: Debug
 23 
 24     - b_toolset: v140
 25       b_config: Release
 26 
 27 build_script:
 28 - cmake -T %b_toolset% -DCMAKE_BUILD_TYPE=%b_config% -DCMAKE_INSTALL_PREFIX=t_install .
 29 - cmake --build . --target install
 30 
 31 after_build:
 32 - cd t_install
 33 - 7z a ../json-c.win32.%b_toolset%.%b_config%.zip *
 34 
 35 artifacts:
 36 - path: json-c.win32.%b_toolset%.%b_config%.zip
 37   name: json-c.win32.%b_toolset%.%b_config%.zip

This page was automatically generated by LXR 0.3.1.  •  OpenWrt