glm/.appveyor.yml

32 lines
522 B
YAML
Raw Normal View History

2016-11-19 20:16:20 +00:00
clone_folder: c:\dev\glm-cmake
2018-08-19 00:13:00 +00:00
os:
- Visual Studio 2013
2018-08-19 00:38:56 +00:00
- Visual Studio 2015
2018-08-19 00:13:00 +00:00
- Visual Studio 2017
2018-08-18 23:33:06 +00:00
2018-08-19 00:34:41 +00:00
configuration:
- Debug
- Release
matrix:
fast_finish: true
2018-08-19 00:13:00 +00:00
platform:
- Win32
- x64
2018-08-18 23:12:58 +00:00
2018-08-19 00:24:55 +00:00
build:
2018-08-19 00:34:41 +00:00
parallel: true
2018-08-19 00:24:55 +00:00
verbosity: minimal
2018-08-19 00:13:00 +00:00
build_script:
- cmake --version
- md build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON ..
2018-08-19 01:30:43 +00:00
- cmake -E time cmake --build . --config %CONFIGURATION% -- /verbosity:minimal
2018-08-19 00:19:59 +00:00
after_build:
2018-08-19 00:34:41 +00:00
- ctest -C %CONFIGURATION%