mirror of
https://github.com/boostorg/hof.git
synced 2026-01-31 08:12:19 +00:00
37 lines
928 B
YAML
37 lines
928 B
YAML
|
|
os: Visual Studio 2015
|
|
|
|
environment:
|
|
matrix:
|
|
# - GENERATOR: "Visual Studio 14 2015 Win64"
|
|
# CONFIG: Debug
|
|
|
|
# - GENERATOR: "Visual Studio 14 2015 Win64"
|
|
# CONFIG: Release
|
|
|
|
- GENERATOR: "Visual Studio 14 2015"
|
|
CONFIG: Debug
|
|
|
|
- GENERATOR: "Visual Studio 14 2015"
|
|
CONFIG: Release
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
build_script:
|
|
- cmd: set PATH=C:\Program Files (x86)\CMake\bin;%PATH%
|
|
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
|
|
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat"
|
|
- cmd: set CTEST_OUTPUT_ON_FAILURE=1
|
|
- cmd: cmake --version
|
|
- cmd: python --version
|
|
- cmd: python setup.py
|
|
- cmd: mkdir build
|
|
- cmd: cd build
|
|
- cmd: SET CXXFLAGS=/DFIT_HAS_GENERIC_LAMBDA=1
|
|
- cmd: cmake .. -G"%GENERATOR%"
|
|
- cmd: cmake --build . --config %CONFIG% --target check
|
|
|
|
# test_script:
|
|
# - cmd: ctest -C Debug --output-on-failure
|
|
# - cmd: cd ../../ |