Support VS 2022 17.1x.y

With 17.10.0 the MSVC toolset was set to 19.40.x which breaks the compatibility test in the OpenCV's CMake Config files.
pull/25632/head
Benjamin Buch 8 months ago committed by GitHub
parent 16b5096ed0
commit 6fb3f63331
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      cmake/templates/OpenCVConfig.root-WIN32.cmake.in

@ -137,7 +137,7 @@ elseif(MSVC)
set(OpenCV_RUNTIME vc14) # selecting previous compatible runtime version
endif()
endif()
elseif(MSVC_VERSION MATCHES "^193[0-9]$")
elseif(MSVC_VERSION MATCHES "^19[34][0-9]$")
set(OpenCV_RUNTIME vc17)
check_one_config(has_VS2022)
if(NOT has_VS2022)

Loading…
Cancel
Save