How do files get into the External Dependencies in Visual Studio C++?
The External Dependencies folder is populated by IntelliSense: the contents of the folder do not affect the build at all (you can in fact disable the folder in the UI). You need to actually include the header (using a #include directive) to use it. Depending on what that header is, you may also need to … Read more