mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
38 lines
823 B
YAML
38 lines
823 B
YAML
clone_folder: c:\dev\glm-cmake
|
|
|
|
image:
|
|
- Visual Studio 2013
|
|
- Visual Studio 2015
|
|
- Visual Studio 2017
|
|
configuration:
|
|
- Release
|
|
- Debug
|
|
platform:
|
|
- x64
|
|
|
|
init:
|
|
- set arch=
|
|
- if "%arch%"=="Win64" ( set arch= Win64)
|
|
- echo %arch%
|
|
- echo %APPVEYOR_BUILD_WORKER_IMAGE%
|
|
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" ( set generator="Visual Studio 15 2017%arch%" )
|
|
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" ( set generator="Visual Studio 14 2015%arch%" )
|
|
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2013" ( set generator="Visual Studio 12 2013%arch%" )
|
|
- echo %generator%
|
|
|
|
before_build:
|
|
- cmd: |-
|
|
mkdir build
|
|
cd build
|
|
cmake --version
|
|
cmake .. -G %generator%
|
|
|
|
build:
|
|
project: c:\dev\glm-cmake\build\template.sln
|
|
verbosity: minimal
|
|
parallel: true
|
|
|
|
after_build:
|
|
- ctest
|
|
|