summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2024-04-18 10:27:20 +0300
committerSamuli Piippo <samuli.piippo@qt.io>2024-04-18 12:49:02 +0300
commit3fff66bd66885e89b155d0e88cbda457b592b427 (patch)
treee2332cb855fb7da540cf0cb1c47216ea2b7e1dfc
parent932b858b63f3af824ab74abf3ec0acdf45dc0d08 (diff)
Use meta-clang if availableHEADdev
Change-Id: I99e6674ea99e9dc8695d0c06a076c2e92bf89ebc Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
-rw-r--r--conf/templates/default/bblayers.conf.sample3
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/templates/default/bblayers.conf.sample b/conf/templates/default/bblayers.conf.sample
index c315c8f..832fdd2 100644
--- a/conf/templates/default/bblayers.conf.sample
+++ b/conf/templates/default/bblayers.conf.sample
@@ -53,3 +53,6 @@ BBLAYERS ?= " \
METAPYTHON2 = "${BSPDIR}/sources/meta-python2"
BBLAYERS += "${@d.getVar('METAPYTHON2') if os.path.exists(d.getVar('METAPYTHON2')) else ''}"
+
+CLANG = "${BSPDIR}/sources/meta-clang"
+BBLAYERS += "${@d.getVar('CLANG') if os.path.exists(d.getVar('CLANG')) else ''}"