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

Fix configuring with CMake version 4

fixes #27122
This commit is contained in:
Dan Dennedy
2025-04-02 13:45:08 -07:00
parent c8e88d8984
commit cb8030809e
12 changed files with 12 additions and 12 deletions
@@ -63,7 +63,7 @@ int main(int argc, char** argv )
Now you have to create your CMakeLists.txt file. It should look like this:
@code{.cmake}
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.5)
project( DisplayImage )
find_package( OpenCV REQUIRED )
include_directories( ${OpenCV_INCLUDE_DIRS} )