Browse Source

Only use precompiled headers on windows

QGC4.4
Nate Weibley 10 years ago
parent
commit
4b3783fbc5
  1. 11
      QGCApplication.pro

11
QGCApplication.pro

@ -126,8 +126,6 @@ include(QGCExternalLibs.pri)
# Main QGroundControl portion of project file # Main QGroundControl portion of project file
# #
PRECOMPILED_HEADER += src/stable_headers.h
RESOURCES += qgroundcontrol.qrc RESOURCES += qgroundcontrol.qrc
DEPENDPATH += \ DEPENDPATH += \
@ -277,8 +275,13 @@ HEADERS += \
src/ui/uas/QGCUnconnectedInfoWidget.h \ src/ui/uas/QGCUnconnectedInfoWidget.h \
src/ui/uas/UASMessageView.h \ src/ui/uas/UASMessageView.h \
src/MissionItem.h \ src/MissionItem.h \
src/AutoPilotPlugins/PX4/PX4AirframeLoader.h \ src/AutoPilotPlugins/PX4/PX4AirframeLoader.h
src/stable_headers.h
WindowsBuild {
PRECOMPILED_HEADER += src/stable_headers.h
HEADERS += src/stable_headers.h
}
!iOSBuild { !iOSBuild {
HEADERS += \ HEADERS += \

Loading…
Cancel
Save