| 1234567891011121314151617181920212223 |
- # can use variables like {build} and {branch}
- version: 1.0.{build}
- image: Visual Studio 2015
- environment:
- BUILD_DIR: "%APPVEYOR_BUILD_FOLDER%\\build"
- platform:
- - Win32
- configuration:
- - Release
- before_build:
- - deps.bat
- - cd %BUILD_DIR%
- - cmake .. -G"%CMAKE_GENERATOR_NAME%"
- build:
- parallel: true
- project: build/entt.sln
- verbosity: minimal
|