Disable gtk for opencv?
#41850
-
I'm trying to add opencv to my project without gtk support built in. According to here, it appears that if I add opencv[core] it should only add opencv4[core] as a dependency, not opencv4[default-features]. However, running Is there anyway to add opencv with opencv4[core] not opencv4[default-features] being added? |
Beta Was this translation helpful? Give feedback.
Answered by
dg0yt
Oct 29, 2024
Replies: 1 comment 1 reply
-
To control the features of opencv4, you have to make an explicit statement about opencv4. $ ./vcpkg depend-info opencv[core] opencv4[core]
vcpkg-cmake:
vcpkg-cmake-config:
vcpkg-get-python-packages:
zlib: vcpkg-cmake
opencv4: vcpkg-cmake, vcpkg-cmake-config, vcpkg-get-python-packages, zlib
opencv: opencv4 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
contagon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To control the features of opencv4, you have to make an explicit statement about opencv4.