You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
36 lines
852 B
36 lines
852 B
clone_folder: c:\dev\glm-cmake |
|
|
|
image: |
|
- Visual Studio 2013 |
|
- Visual Studio 2015 |
|
- Visual Studio 2017 |
|
configuration: |
|
- Release |
|
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 .. -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -G %generator% |
|
|
|
build: |
|
project: c:\dev\glm-cmake\build\template.sln |
|
verbosity: minimal |
|
parallel: true |
|
|
|
after_build: |
|
- ctest |
|
|
|
|