Browse Source

Disable QtQuick compiler for Debug builds

QGC4.4
Gus Grubba 7 years ago committed by Gus Grubba
parent
commit
45d36be49a
  1. 9
      qgroundcontrol.pro

9
qgroundcontrol.pro

@ -201,8 +201,13 @@ LinuxBuild { @@ -201,8 +201,13 @@ LinuxBuild {
CONFIG += qt \
thread \
c++11 \
qtquickcompiler \
c++11
DebugBuild {
CONFIG -= qtquickcompiler
} else {
CONFIG += qtquickcompiler
}
contains(DEFINES, ENABLE_VERBOSE_OUTPUT) {
message("Enable verbose compiler output (manual override from command line)")

Loading…
Cancel
Save