diff options
author | Shauren <shauren.trinity@gmail.com> | 2023-07-25 11:42:08 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-02-26 12:26:37 +0100 |
commit | 0929d3dfdd27a60e3f0dea59a24130092bb92c8b (patch) | |
tree | 61d9490b7b7ddc90b21ddbc4d9b4790cad7d0b55 | |
parent | e6069c14abab12fd7f04786f7eecf00f3d8b13d4 (diff) |
Build: Increase required msvc version slightly
(cherry picked from commit 1ed8bfa08017b69d59f2cb7703f59ab4a0a3bf79)
-rw-r--r-- | cmake/compiler/msvc/settings.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/compiler/msvc/settings.cmake b/cmake/compiler/msvc/settings.cmake index 1d307339fb7..b6c73fcb260 100644 --- a/cmake/compiler/msvc/settings.cmake +++ b/cmake/compiler/msvc/settings.cmake @@ -1,8 +1,8 @@ # set up output paths for executable binaries (.exe-files, and .dll-files on DLL-capable platforms) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) -set(MSVC_EXPECTED_VERSION 19.30) -set(MSVC_EXPECTED_VERSION_STRING "Microsoft Visual Studio 2022 17") +set(MSVC_EXPECTED_VERSION 19.32) +set(MSVC_EXPECTED_VERSION_STRING "Microsoft Visual Studio 2022 17.2") # This file is also used by compilers that pretend to be MSVC but report their own version number - don't version check them if(NOT CMAKE_CXX_COMPILER_FRONTEND_VARIANT) |