diff options
| author | Scott Mansell <phiren@gmail.com> | 2023-02-23 15:27:57 +1300 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2023-02-23 15:27:57 +1300 |
| commit | a306da2f80ab3d08b674cfc3ed35ee85536669e6 (patch) | |
| tree | 550cbf4983fb746d6a32ec245e3fedfcb2039660 | |
| parent | f34a09b39ffba84e737e036e606b839ad9be4c01 (diff) | |
Bump requried Clang to 12 (AppleClang 13.0.0)
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files 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 |
