Commit e2d46469 authored by Don Gagne's avatar Don Gagne

Merge pull request #1983 from NaterGator/qt-pch-compiletime

Precompile a handful of Qt headers to speed up compilation time
parents d8cb9592 9b1006ce
......@@ -270,6 +270,12 @@ HEADERS += \
src/MissionItem.h \
src/AutoPilotPlugins/PX4/PX4AirframeLoader.h
WindowsBuild {
PRECOMPILED_HEADER += src/stable_headers.h
HEADERS += src/stable_headers.h
}
!iOSBuild {
HEADERS += \
src/comm/SerialLink.h \
......
#ifndef STABLE_HEADERS_H
#define STABLE_HEADERS_H
#include <QtCore>
#include <QtGui>
#include <QtWidgets>
#endif // STABLE_HEADERS_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment