mirror of
https://github.com/opencv/opencv.git
synced 2025-06-13 04:52:53 +08:00
cmake: support MSVS 2019
This commit is contained in:
parent
45c4d3a62b
commit
8ee1be7d09
@ -143,6 +143,8 @@ elseif(MSVC)
|
|||||||
set(OpenCV_RUNTIME vc14)
|
set(OpenCV_RUNTIME vc14)
|
||||||
elseif(MSVC_VERSION MATCHES "^191[0-9]$")
|
elseif(MSVC_VERSION MATCHES "^191[0-9]$")
|
||||||
set(OpenCV_RUNTIME vc15)
|
set(OpenCV_RUNTIME vc15)
|
||||||
|
elseif(MSVC_VERSION MATCHES "^192[0-9]$")
|
||||||
|
set(OpenCV_RUNTIME vc16)
|
||||||
else()
|
else()
|
||||||
message(WARNING "OpenCV does not recognize MSVC_VERSION \"${MSVC_VERSION}\". Cannot set OpenCV_RUNTIME")
|
message(WARNING "OpenCV does not recognize MSVC_VERSION \"${MSVC_VERSION}\". Cannot set OpenCV_RUNTIME")
|
||||||
endif()
|
endif()
|
||||||
|
@ -113,6 +113,16 @@ elseif(MSVC)
|
|||||||
if(NOT has_VS2017)
|
if(NOT has_VS2017)
|
||||||
set(OpenCV_RUNTIME vc14) # selecting previous compatible runtime version
|
set(OpenCV_RUNTIME vc14) # selecting previous compatible runtime version
|
||||||
endif()
|
endif()
|
||||||
|
elseif(MSVC_VERSION MATCHES "^192[0-9]$")
|
||||||
|
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()
|
||||||
endif()
|
endif()
|
||||||
elseif(MINGW)
|
elseif(MINGW)
|
||||||
set(OpenCV_RUNTIME mingw)
|
set(OpenCV_RUNTIME mingw)
|
||||||
|
Loading…
Reference in New Issue
Block a user