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