Change to C++14 instead of C++20

Updated appveyor version matrix.  Removed vs2013
This commit is contained in:
Graham Pentheny 2022-10-29 23:08:16 -04:00 committed by Graham Pentheny
parent bab65d759d
commit 9098a81682
2 changed files with 7 additions and 4 deletions

View File

@ -194,7 +194,7 @@ project "RecastDemo"
project "Tests"
language "C++"
kind "ConsoleApp"
cppdialect "C++20" -- Catch requires newer C++ features
cppdialect "C++14" -- Catch requires newer C++ features
-- Catch requires RTTI and exceptions
exceptionhandling "On"

View File

@ -2,15 +2,18 @@ shallow_clone: true
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
PREMAKE_ACTION: vs2013
CMAKE_GENERATOR: Visual Studio 12 2013 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
PREMAKE_ACTION: vs2015
CMAKE_GENERATOR: Visual Studio 14 2015 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
PREMAKE_ACTION: vs2017
CMAKE_GENERATOR: Visual Studio 15 2017 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PREMAKE_ACTION: vs2019
CMAKE_GENERATOR: Visual Studio 16 2019 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
PREMAKE_ACTION: vs2022
CMAKE_GENERATOR: Visual Studio 17 2022 Win64
configuration:
- Debug