mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
24 lines
485 B
YAML
24 lines
485 B
YAML
|
version: "{build}"
|
||
|
|
||
|
os: Visual Studio 2015
|
||
|
|
||
|
platform:
|
||
|
- Win32
|
||
|
- x64
|
||
|
|
||
|
configuration:
|
||
|
- Debug
|
||
|
- Release
|
||
|
|
||
|
before_build:
|
||
|
- cmd: md build
|
||
|
- cmd: cd build
|
||
|
- cmd: if "%platform%"=="Win32" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015
|
||
|
- cmd: if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 Win64
|
||
|
- cmd: cmake -G "%CMAKE_GENERATOR_NAME%" -DCMAKE_BUILD_TYPE=%configuration% ..
|
||
|
|
||
|
build:
|
||
|
project: build\GZDoom.sln
|
||
|
parallel: true
|
||
|
verbosity: minimal
|