I have a project using 2 different packages, pkgA with triplet x86-windows-static
, and pkgB, with triplet x86-windows
.
When I try to compile my project, everything works fine for pkgA, since $(VcpkgRoot)
is %userprofile%/vcpkg/installed/x86-windows-static
, however, the headers from pkgB can't be found because they are in %userprofile%/vcpkg/installed/x86-windows
.
How do I solve this problem?