diff --git a/QGCApplication.pro b/QGCApplication.pro index 08f0eeedd77d57bad01e6a1f90571ca39a678e11..bf54888bd66688608681b549c72f06d4901ccadb 100644 --- a/QGCApplication.pro +++ b/QGCApplication.pro @@ -126,6 +126,8 @@ include(QGCExternalLibs.pri) # Main QGroundControl portion of project file # +PRECOMPILED_HEADER += src/stable_headers.h + RESOURCES += qgroundcontrol.qrc DEPENDPATH += \ @@ -275,7 +277,8 @@ HEADERS += \ src/ui/uas/QGCUnconnectedInfoWidget.h \ src/ui/uas/UASMessageView.h \ src/MissionItem.h \ - src/AutoPilotPlugins/PX4/PX4AirframeLoader.h + src/AutoPilotPlugins/PX4/PX4AirframeLoader.h \ + src/stable_headers.h !iOSBuild { HEADERS += \ diff --git a/src/stable_headers.h b/src/stable_headers.h new file mode 100644 index 0000000000000000000000000000000000000000..da7194078cac32df7d08ef10d4e3ef10c04b88ac --- /dev/null +++ b/src/stable_headers.h @@ -0,0 +1,9 @@ +#ifndef STABLE_HEADERS_H +#define STABLE_HEADERS_H + +#include +#include +#include + +#endif // STABLE_HEADERS_H +