Visual Studio Tips for getting the headers used in this project?

I have added all the header files from the library in the path, how to get the headers that are only needed for the project

0


source to share


1 answer


There is a compiler option here that will create a list of included files for the compilation unit in the build output window.



On the compilation unit properties page, under C / C ++ Advanced, there is a Show Includes option. Enable this and recompile. Maybe you can also do it at the project level, but I suggest you do it per compilation unit (.cpp) one by one.

0


source







All Articles