31 lines
512 B
YAML
31 lines
512 B
YAML
clone_folder: c:\dev\glm-cmake
|
|
|
|
os:
|
|
- Visual Studio 2013
|
|
- Visual Studio 2015
|
|
- Visual Studio 2017
|
|
|
|
configuration:
|
|
- Debug
|
|
- Release
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
platform:
|
|
- x64
|
|
|
|
build:
|
|
parallel: true
|
|
verbosity: minimal
|
|
|
|
build_script:
|
|
- cmake --version
|
|
- md build
|
|
- cd build
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON ..
|
|
- cmake -E time cmake --build . --config %CONFIGURATION% -- /verbosity:minimal
|
|
|
|
after_build:
|
|
- ctest -C %CONFIGURATION%
|