From 45d36be49afc9de1c207c42334c19c1c292de0ef Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Thu, 19 Jul 2018 23:42:23 -0400 Subject: [PATCH] Disable QtQuick compiler for Debug builds --- qgroundcontrol.pro | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/qgroundcontrol.pro b/qgroundcontrol.pro index 769e02934..b2ca974c1 100644 --- a/qgroundcontrol.pro +++ b/qgroundcontrol.pro @@ -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)") -- 2.22.0