SetCommonPchSettings

Establishes the precompiled header settings for the project.

function SetCommonPchSettings( 
   oProj  
);

Parameters

  • oProj
    The selected project.

Remarks

Call this function to establish the precompiled header settings for the project.

This function sets the UsePrecompiledHeader property to the following:

Example

if ((strAppType == "LIB" || ((strAppType == "CONSOLE") && 
   wizard.FindSymbol(SUPPORT_MFC"))) && !Pch)
   {
      AddFilesToProject(selProj, strProjectName, InfFile);
      SetNoCommonPchSettings(selProj);
   }
else
   {
      AddFilesToProject(selProj, strProjectName, InfFile);
      SetcommonPchSettings(selProj);
   }

See Also

Tasks

Creating a Custom Wizard

Reference

SetNoPchSettings

AddCommonConfig

Concepts

Customizing C++ Wizards with Common JScript Functions

Designing a Wizard

Other Resources

JScript Functions for C++ Wizards