Why do I have an External Dependencies folder (shortcut) in the solution explorer window?

I have Qt5 and vs2010 on my computer qmake -tp vc chapter01.pro, then open it in vs2010:

folder shortcutunfold the External Dependencies shortcut

Why did I get the External Dependencies folder (shortcut) in the solution explorer window?

The current program seems to be using header files inside the External Dependencies folder (shortcut). How can I disable this folder, or how do I stop the program using the header files in this folder?

+3


source to share


1 answer


Of course, these are external dependencies that Visual Studio (IntelliSense) discovered your project is using.



If it bothers you too much, you can hide the folder by going to ToolsSettingsText Editorthe C / C ++Advanced . Locate Disable External Dependency Folders , set True, and restart Visual Studio!

+15


source







All Articles