homescreen: quiet debug messages in non-devel 97/19497/1
authorScott Murray <scott.murray@konsulko.com>
Sat, 5 Jan 2019 02:55:25 +0000 (21:55 -0500)
committerScott Murray <scott.murray@konsulko.com>
Sat, 5 Jan 2019 02:53:00 +0000 (02:53 +0000)
Define QT_NO_DEBUG_OUTPUT when not building with agl-devel enabled
to quiet the debug logging on volume changes.

Change-Id: I8667332954664cf07f3d29b098c9c9dc8265c2ee
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
recipes-demo-hmi/homescreen/homescreen_git.bb

index 80d402b..7782587 100644 (file)
@@ -26,3 +26,5 @@ PV      = "1.0+git${SRCPV}"
 S       = "${WORKDIR}/git/"
 
 PATH_prepend = "${STAGING_DIR_NATIVE}${OE_QMAKE_PATH_QT_BINS}:"
+
+OE_QMAKE_CXXFLAGS_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'agl-devel', '' , '-DQT_NO_DEBUG_OUTPUT', d)}"