We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28f1eec commit e030367Copy full SHA for e030367
2 files changed
.github/workflows/cmake-multi-platform.yml
CMakeLists.txt
@@ -44,13 +44,8 @@ set(CPACK_SOURCE_IGNORE_FILES "/\.git*;/build;")
44
include(CPack)
45
46
# -------- Dependencies --------
47
-find_package(PkgConfig REQUIRED)
48
-
49
-# Use PkgConfig for OpenCV
50
-pkg_check_modules(OPENCV REQUIRED opencv4)
51
52
-# Use PkgConfig for Eigen
53
-pkg_check_modules(EIGEN3 REQUIRED eigen3)
+find_package(OpenCV REQUIRED)
+find_package(Eigen3 REQUIRED NO_MODULES)
54
55
# (Optional) OpenEXR via find_package
56
find_package(OpenEXR QUIET)
0 commit comments