Contents

As you may know, precompiled header (pch.h, stdafx.h) is header file that is compiled into an intermediate form that is faster to process for the compiler. Each subsequent compilation is faster because the stable code does not need to be recompiled

To disable Precompiled header

  1. Right click on your project, choose Properties
  2. Configuration Propeties -> C/C++ -> Precompiled Headers
  3. In the right panel, select Not Using Precompiled Headers

precompiled_header

Contents