Visual Studio 2019 and vcpkg packages

Using vcpkg I installed the mongo-cxx-drive:x64-windows
I have run vcpkg integrate install
When I try to include one of the headers in my project code, Visual Studio can’t find it

#include 

I expected to find the files at

D:\vcpkg\vcpkg\installed\x64-windows\include\mongocxx

In this case, I’m finding them at

D:\vcpkg\vcpkg\installed\x64-windows\include\mongocxx\v_noabi\mongocxx

I suspect I’m missing a setting somewhere in Visual Studio, but I’m not having any luck finding it. What do I need to do to allow VS to automatically find the includes for installed libraries?

Read more here: Source link