mirror of
https://github.com/opencv/opencv.git
synced 2026-09-25 04:09:57 +03:00
According to https://github.com/opencv/opencv/wiki/OpenCV-4-to-5-migration#1-build-requirements are not supported: - GCC < 7 - clang < 9 - MSVC < 2017 (19.14)
10 lines
336 B
CMake
10 lines
336 B
CMake
if(NOT DEFINED MIN_VER_CMAKE)
|
|
set(MIN_VER_CMAKE 3.13) # Debian 10
|
|
# set(MIN_VER_CMAKE 3.10) # Visual Studio 2017 15.7
|
|
endif()
|
|
set(MIN_VER_CUDA 9.0) # CUDA 9.0 is the minimum version supporting stable C++11 compilation for device code
|
|
set(MIN_VER_CUDNN 7.5)
|
|
set(MIN_VER_CUDNNJIT 9.0)
|
|
set(MIN_VER_PYTHON3 3.2)
|
|
set(MIN_VER_ZLIB 1.2.3)
|