Using Precompiled Headers
Precompiled headers are a performance feature supported by some compilers to compile a stable body of code, and store the compiled state of the code in a binary file. During subsequent compilations, the compiler will load the stored state, and continue compiling the specified file. Each subsequent compilation is faster because the stable code does not need to be recompiled.
qmake supports the use of precompiled headers (PCH) on some platforms and build environments, including:
* Windows
o nmake
o Dsp projects (VC 6.0)
o Vcproj projects (VC 7.0 & 7.1)
* Mac OS X
o Makefile
o Xcode
* Unix
o GCC 3.4 and above
Adding Precompiled Headers to Your Project
Contents of the Precompiled Header File
The precompiled header must contain code which is stable and static throughout your project. A typical PCH might look like this:
Example: stable.h
// Add C includes here
#if defined __cplusplus
// Add C++ includes here
#include <stdlib>
#include <iostream>
#include <vector>
#include <QApplication> // Qt includes
#include <QPushButton>
#include <QLabel>
#include "thirdparty/include/libmain.h"
#include "my_stable_class.h"
...
#endif
Note that a precompiled header file needs to separate C includes from C++ includes, since the precompiled header file for C files may not contain C++ code.
Project Options
To make your project use PCH, you only need to define the PRECOMPILED_HEADER variable in your project file:
PRECOMPILED_HEADER = stable.h
qmake will handle the rest, to ensure the creation and use of the precompiled header file. You do not need to include the precompiled header file in HEADERS, as qmake will do this if the configuration supports PCH.
All platforms that support precompiled headers have the configuration option precompile_header set. Using this option, you may trigger conditional blocks in your project file to add settings when using PCH. For example:
precompile_header:!isEmpty(PRECOMPILED_HEADER) {
DEFINES += USING_PCH
}
Notes on Possible Issues
On some platforms, the file name suffix for precompiled header files is the same as that for other object files. For example, the following declarations may cause two different object files with the same name to be generated:
PRECOMPILED_HEADER = window.h
SOURCES = window.cpp
To avoid potential conflicts like these, it is good practice to ensure that header files that will be precompiled are given distinctive names.
|