mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-18 22:30:02 +00:00
The cmake.bbclass in oe-core now ensures that ${libdir}/cmake and
${datadir}/cmake end up in the dev package, so recipes no longer need to
provide custom packaging rules to handles these files.
http://git.openembedded.org/openembedded-core/commit/?id=d91dc4666683a96e9d03cbbd21b8a546f9069c93
Originally-conceived-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
26 lines
715 B
BlitzBasic
26 lines
715 B
BlitzBasic
SUMMARY = "A fast JSON parser/generator for C++ with both SAX/DOM style API"
|
|
HOMEPAGE = "http://rapidjson.org/"
|
|
SECTION = "libs"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://license.txt;md5=ba04aa8f65de1396a7e59d1d746c2125"
|
|
|
|
SRC_URI = "git://github.com/miloyip/rapidjson.git;nobranch=1 \
|
|
file://remove-march-native-from-CMAKE_CXX_FLAGS.patch \
|
|
"
|
|
|
|
SRCREV = "e5635fb27feab7f6e8d7b916aa20ad799045a641"
|
|
|
|
PV = "1.1.0+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE += "-DRAPIDJSON_BUILD_DOC=OFF -DRAPIDJSON_BUILD_TESTS=OFF -DRAPIDJSON_BUILD_EXAMPLES=OFF"
|
|
|
|
# RapidJSON is a header-only C++ library, so the main package will be empty.
|
|
|
|
RDEPENDS_${PN}-dev = ""
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|