1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

add MSVC 19.50 / VS 2026 / VC 18 to config: fix #28013

This commit is contained in:
Benjamin Buch
2025-11-14 15:44:58 +01:00
parent 1abc90c178
commit 91a720144b
2 changed files with 29 additions and 9 deletions
@@ -141,15 +141,33 @@ elseif(MSVC)
set(OpenCV_RUNTIME vc17)
check_one_config(has_VS2022)
if(NOT has_VS2022)
set(OpenCV_RUNTIME vc16)
check_one_config(has_VS2019)
if(NOT has_VS2019)
set(OpenCV_RUNTIME vc15) # selecting previous compatible runtime version
check_one_config(has_VS2017)
if(NOT has_VS2017)
set(OpenCV_RUNTIME vc14) # selecting previous compatible runtime version
endif()
endif()
set(OpenCV_RUNTIME vc16) # selecting previous compatible runtime version
check_one_config(has_VS2019)
if(NOT has_VS2019)
set(OpenCV_RUNTIME vc15) # selecting previous compatible runtime version
check_one_config(has_VS2017)
if(NOT has_VS2017)
set(OpenCV_RUNTIME vc14) # selecting previous compatible runtime version
endif()
endif()
endif()
elseif(MSVC_VERSION MATCHES "^195[0-9]$")
set(OpenCV_RUNTIME vc18)
check_one_config(has_VS2026)
if(NOT has_VS2026)
set(OpenCV_RUNTIME vc17) # selecting previous compatible runtime version
check_one_config(has_VS2022)
if(NOT has_VS2022)
set(OpenCV_RUNTIME vc16) # selecting previous compatible runtime version
check_one_config(has_VS2019)
if(NOT has_VS2019)
set(OpenCV_RUNTIME vc15) # selecting previous compatible runtime version
check_one_config(has_VS2017)
if(NOT has_VS2017)
set(OpenCV_RUNTIME vc14) # selecting previous compatible runtime version
endif()
endif()
endif()
endif()
endif()
elseif(MINGW)