最佳答案
我为使用 OpenCV库的 C + + 项目编写了一个 CMakeLists.txt
。当我尝试使用 cmake 创建项目时,会遇到下一个配置问题:
CMake Error at CMakeLists.txt:15 (find_package):
Could not find module FindOpenCV.cmake or a configuration file for package
OpenCV.
Adjust CMAKE_MODULE_PATH to find FindOpenCV.cmake or set OpenCV_DIR to the
directory containing a CMake configuration file for OpenCV. The file will
have one of the following names:
OpenCVConfig.cmake
opencv-config.cmake
事实上,我对在 Visual Studio 中使用的路径有一个环境变量,没有任何问题。如果我不包括 OpenCV,那么我可以配置和生成没有问题,但我需要解决这个问题。我不明白为什么 cmake 找不到 OpenCV 路径或者如何修复它。
我还使用了这个链接中提到的建议: 找到 OpenCV.cmake
Does anybody had this problem too?