VC++ Programming UESTC Chapter 3 Getting Started with App wizard Debug Target vs Release Target What is the purpose of using debug build option? Executable size difference between the two options Path to locate the target Other related settings Debug enables the diagnostic macros Use Tracer utility
VC++ Programming @ UESTC 11 ⚫ Debug Target vs. Release Target What is the purpose of using debug build option? Executable size difference between the two options Path to locate the target Other related settings Debug Enables the Diagnostic Macros Use Tracer utility Chapter 3 Getting Started with AppWizard
VC++ Programming UESTC Chapter 3 Getting Started with App wizard e". h'' file contains the mfc header files used in this project switch setting and precompiled headers Automatic precompiled headers /Yx vs Manual precompiled headers/Yc/Yu Automatic switch stores compiler output in a database file /Yc, used only with stdAfx. cpp causes the creation of the precompiled(PCh) file /Yu, used with all other source file, causes use of the existing PCH file
VC++ Programming @ UESTC 12 ⚫ “StdAfx.h” file contains the MFC header files used in this project. switch setting and precompiled headers Automatic precompiled headers /Yx vs. Manual precompiled headers /Yc /Yu Automatic switch stores compiler output in a database file. /Yc, used only with stdAfx.cpp causes the creation of the precompiled (PCH) file. /Yu , used with all other source file , causes use of the existing PCH file. Chapter 3 Getting Started with AppWizard