Setting Debug Info option
-
Is it possible to set the debug info option through batch build script. Note: I am not looking for the option through Visual Studio IDE
-
Is it possible to set the debug info option through batch build script. Note: I am not looking for the option through Visual Studio IDE
/DEBUG (Generate Debug Info) linker option[^]? Most of the Visual Studio project settings correspond to the associated tool (compiler, linker, etc.) command line options. If you have trouble finding the appropriate option, look in the "Command Line" sections in the VS project properties. Compiler Options Listed by Category[^] Linker Options[^] Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
/DEBUG (Generate Debug Info) linker option[^]? Most of the Visual Studio project settings correspond to the associated tool (compiler, linker, etc.) command line options. If you have trouble finding the appropriate option, look in the "Command Line" sections in the VS project properties. Compiler Options Listed by Category[^] Linker Options[^] Mark
Mark Salsbery Microsoft MVP - Visual C++ :java:
Thank you Mark. The links are very useful.