Replies: 1 comment 1 reply
-
Set |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
While on Linux one has
pkg-config
out of the box, and can leverageFindPkgConfig
, it's quite exotic for Windows.Adding a host-only dependency
pkgconf
resolves that, but I don't see a way to ask vcpkg for host triplet, which is required to form a path topkgconf
and use it to setPKG_CONFIG_EXECUTABLE
.I found that
vcpkg_pkgconfig_get_modules
jumps through some hoops to work around that. I tried to get advantage of that, but it seems thatx_vcpkg_pkgconfig_get_modules
is available in portfiles only.So, what's the idiomatic way of consuming cairo and other pkg-config libraries on Windows?
Beta Was this translation helpful? Give feedback.
All reactions