You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# can use variables like {build} and {branch}
|
|
version: 1.0.{build}
|
|
|
|
image: Visual Studio 2017
|
|
|
|
environment:
|
|
BUILD_DIR: "%APPVEYOR_BUILD_FOLDER%\\build"
|
|
|
|
platform:
|
|
- Win32
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
before_build:
|
|
- cd %BUILD_DIR%
|
|
- cmake .. -DBUILD_TESTING=ON -DBUILD_LIB=ON -DCMAKE_CXX_FLAGS=/W1 -G"Visual Studio 15 2017"
|
|
|
|
after_build:
|
|
- ctest -C Release -j4
|
|
|
|
build:
|
|
parallel: true
|
|
project: build/entt.sln
|
|
verbosity: minimal
|