From 9098a816824ea5d069f5df0be94cc19f4d6d4e02 Mon Sep 17 00:00:00 2001 From: Graham Pentheny Date: Sat, 29 Oct 2022 23:08:16 -0400 Subject: [PATCH] Change to C++14 instead of C++20 Updated appveyor version matrix. Removed vs2013 --- RecastDemo/premake5.lua | 2 +- appveyor.yml | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/RecastDemo/premake5.lua b/RecastDemo/premake5.lua index 08a2dbb..5dc6847 100644 --- a/RecastDemo/premake5.lua +++ b/RecastDemo/premake5.lua @@ -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" diff --git a/appveyor.yml b/appveyor.yml index 263d1e5..6459e1c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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