blob: 384e8a58056732956e33228394758bd9f3a45e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SUMMARY = "Include What You Use (IWYU) - Clang based checker for C/C++ header includes"
DESCRIPTION = "For every symbol (type, function, variable, or macro) that you \
use in foo.cc (or foo.cpp), either foo.cc or foo.h should \
include a .h file that exports the declaration of that symbol."
HOMEPAGE = "https://include-what-you-use.org"
BUGTRACKER = "https://github.com/include-what-you-use/include-what-you-use/issues"
LICENSE = "NCSA"
LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=59d01ad98720f3c50d6a8a0ef3108c88 \
file://iwyu-check-license-header.py;md5=7bdb749831163fbe9232b3cb7186116f"
DEPENDS = "clang"
SRC_URI = "git://github.com/include-what-you-use/include-what-you-use.git;protocol=https;branch=master"
SRCREV = "0ed29a277505735d90f4d8b15e8a90db8d961853"
S = "${WORKDIR}/git"
inherit cmake python3native
FILES:${PN} += "${datadir}/${BPN}"
BBCLASSEXTEND = "nativesdk"
|