From a306da2f80ab3d08b674cfc3ed35ee85536669e6 Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Thu, 23 Feb 2023 15:27:57 +1300 Subject: [PATCH] Bump requried Clang to 12 (AppleClang 13.0.0) --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ccb05cc3c6..6717d3a401 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,9 +45,9 @@ endif() # Enforce minimium compiler versions that support the c++20 features we use set (GCC_min_version 10) -set (Clang_min_version 11) -set (AppleClang_min_version 12.0.5) -set (min_xcode_version "12.5.1") # corrosponding xcode version for AppleClang_min_version +set (Clang_min_version 12) +set (AppleClang_min_version 13.0.0) +set (min_xcode_version "13.0") # corrosponding xcode version for AppleClang_min_version set (MSVC_min_version 14.32) set (min_vs_version "2022 17.2.3") # corrosponding Visual Studio version for MSVC_min_version