Vulkan-Hpp/.appveyor.yml

32 lines
596 B
YAML
Raw Normal View History

2020-03-19 19:00:07 +00:00
image:
- Visual Studio 2015
2019-11-05 05:41:51 +00:00
- Visual Studio 2017
configuration:
- Debug
2020-03-19 19:00:07 +00:00
build:
verbosity: detailed
2019-11-05 05:41:51 +00:00
environment:
matrix:
2020-03-19 19:00:07 +00:00
- GENERATOR_ARCH: Win32
- GENERATOR_ARCH: x64
2019-11-05 05:41:51 +00:00
install:
- git submodule update --init --recursive
build_script:
2020-03-19 19:00:07 +00:00
- 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%