mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
32 lines
596 B
YAML
32 lines
596 B
YAML
image:
|
|
- Visual Studio 2015
|
|
- Visual Studio 2017
|
|
|
|
configuration:
|
|
- Debug
|
|
|
|
build:
|
|
verbosity: detailed
|
|
|
|
environment:
|
|
matrix:
|
|
- GENERATOR_ARCH: Win32
|
|
- GENERATOR_ARCH: x64
|
|
|
|
install:
|
|
- git submodule update --init --recursive
|
|
|
|
build_script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake --version
|
|
- cmake ..
|
|
-A %GENERATOR_ARCH%
|
|
-DSAMPLES_BUILD=ON
|
|
-DTESTS_BUILD=ON
|
|
-DSAMPLES_BUILD_ONLY_DYNAMIC=ON
|
|
-DSAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON
|
|
-DTESTS_BUILD_ONLY_DYNAMIC=ON
|
|
-DTESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON
|
|
- cmake --build . --config %CONFIGURATION%
|