summaryrefslogtreecommitdiffhomepage
path: root/tracker-aruco
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-02-05 19:28:34 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-02-05 19:28:34 +0100
commit1ef33dbcb210714172bbf096d1b52811554a6cf8 (patch)
tree9ca8883e3982141082a1a209cbad37e7dde02e00 /tracker-aruco
parentae611eef485f0c40a3d6b35d657368f6b3908a8a (diff)
tracker/aruco: also check for opencv_features2d
Diffstat (limited to 'tracker-aruco')
-rw-r--r--tracker-aruco/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-aruco/CMakeLists.txt b/tracker-aruco/CMakeLists.txt
index ff743d42..4a1b4a5a 100644
--- a/tracker-aruco/CMakeLists.txt
+++ b/tracker-aruco/CMakeLists.txt
@@ -10,7 +10,7 @@ endfunction()
include(opentrack-opencv)
find_package(OpenCV QUIET)
-if(OpenCV_FOUND AND TARGET opencv_calib3d)
+if(OpenCV_FOUND AND TARGET opencv_calib3d AND TARGET opencv_features2d)
foreach(k core calib3d imgproc features2d flann)
otr_install_lib("opencv_${k}" "${opentrack-libexec}")
endforeach()