Is there dependency generation flag for MSVC like gcc\'s -M flag.
-M
Every C++ compiler I have ever used had this kind of flag. How can I create dependencies a
You may be able to use:
/showIncludes show include file names
although you will probably also need some additional filtering afterwards to get the format that you need.