subhook/appveyor.yml

21 lines
397 B
YAML
Raw Permalink Normal View History

2015-02-16 16:04:57 +00:00
version: '{build}'
2016-08-28 07:10:35 +00:00
platform:
- x86
- x64
2015-02-16 16:04:57 +00:00
configuration:
- Release
2016-08-28 07:38:58 +00:00
environment:
CTEST_OUTPUT_ON_FAILURE: ON
2018-08-31 19:00:11 +00:00
install:
- choco install -y yasm
2015-02-16 16:04:57 +00:00
before_build:
- if %PLATFORM% == x86 set BUILD_ARCH=Win32
- if %PLATFORM% == x64 set BUILD_ARCH=x64
- cmake . -A %BUILD_ARCH%
2015-02-16 16:04:57 +00:00
build_script:
- cmake --build . --config %CONFIGURATION%
test_script:
- ctest --build-config %CONFIGURATION%