this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Trying some changes to make the right VS solution files.

+9 -6
+9 -6
.appveyor.yml
··· 1 1 environment: 2 2 P: "c:/projects/libs" 3 - # ACCOUNT: 4 - # secure: 5 3 6 4 branches: 7 5 only: 8 - - master 6 + - appveyor-prep 9 7 10 - os: Visual Studio 2015 8 + image: 9 + - Visual Studio 2019 10 + - Visual Studio 2017 11 11 12 12 init: 13 13 - git config --global core.autocrlf input 14 - 14 + - echo %APPVEYOR_BUILD_WORKER_IMAGE% 15 + - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" ( set generator="Visual Studio 16 2019%arch%" ) 16 + - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" ( set generator="Visual Studio 15 2017%arch%" ) 17 + - echo %generator% 15 18 16 19 17 20 shallow_clone: true ··· 43 46 - cd c:\projects\SDL_gpu 44 47 - mkdir build 45 48 - cd build 46 - - cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX=c:\projects\libs\SDL2 -DSDL_gpu_BUILD_DEMOS=ON -DSDL_gpu_BUILD_TESTS=ON -DSDL_gpu_BUILD_TOOLS=ON -DSDL_gpu_BUILD_SHARED=ON -DSDL_gpu_BUILD_STATIC=ON .. 49 + - cmd: cmake -G %generator% -DCMAKE_INSTALL_PREFIX=c:\projects\libs\SDL2 -DSDL_gpu_BUILD_DEMOS=ON -DSDL_gpu_BUILD_TESTS=ON -DSDL_gpu_BUILD_TOOLS=ON -DSDL_gpu_BUILD_SHARED=ON -DSDL_gpu_BUILD_STATIC=ON .. 47 50 48 51 # scripts to run after build 49 52 after_build: