Vulkan-Hpp/.appveyor.yml

35 lines
705 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
2020-07-28 09:37:53 +00:00
PYTHON: "C:\\Python38"
2020-03-19 19:00:07 +00:00
- GENERATOR_ARCH: x64
2020-07-28 09:37:53 +00:00
PYTHON: "C:\\Python38-x64"
2019-11-05 05:41:51 +00:00
install:
- git submodule update --init --recursive
2020-07-28 09:37:53 +00:00
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
2019-11-05 05:41:51 +00:00
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%