summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/include-what-you-use/include-what-you-use_0.26.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/include-what-you-use/include-what-you-use_0.26.bb')
-rw-r--r--meta-oe/recipes-devtools/include-what-you-use/include-what-you-use_0.26.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/include-what-you-use/include-what-you-use_0.26.bb b/meta-oe/recipes-devtools/include-what-you-use/include-what-you-use_0.26.bb
new file mode 100644
index 0000000000..57ade99a1d
--- /dev/null
+++ b/meta-oe/recipes-devtools/include-what-you-use/include-what-you-use_0.26.bb
@@ -0,0 +1,22 @@
1SUMMARY = "Include What You Use (IWYU) - Clang based checker for C/C++ header includes"
2DESCRIPTION = "For every symbol (type, function, variable, or macro) that you \
3 use in foo.cc (or foo.cpp), either foo.cc or foo.h should \
4 include a .h file that exports the declaration of that symbol."
5HOMEPAGE = "https://include-what-you-use.org"
6BUGTRACKER = "https://github.com/include-what-you-use/include-what-you-use/issues"
7LICENSE = "NCSA"
8LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=3bb66a14534286912cd6f26649b5c60a \
9 file://iwyu-check-license-header.py;md5=7bdb749831163fbe9232b3cb7186116f"
10
11DEPENDS = "clang"
12
13SRCREV = "01a091d16b3dedb808db21f32ed3e761737a3691"
14SRC_URI = "git://github.com/include-what-you-use/include-what-you-use.git;protocol=https;branch=clang_22;tag=${PV}"
15
16inherit cmake python3native
17
18EXTRA_OECMAKE = "-DIWYU_RESOURCE_RELATIVE_TO=iwyu"
19
20FILES:${PN} += "${datadir}/${BPN}"
21
22BBCLASSEXTEND = "nativesdk"