mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
0272da33e7
Building with intrumentation is only useful during development or optimization phases, in production, this will just make it slow and in some cases not work where file system might be readonly. If its needed then enable the packageconfig via a bbappend Signed-off-by: Khem Raj <raj.khem@gmail.com>
28 lines
958 B
BlitzBasic
28 lines
958 B
BlitzBasic
SUMMARY = "C++ framework for json-rpc 1.0 and 2.0"
|
|
DESCRIPTION = "JsonRpc-Cpp is an OpenSource implementation of JSON-RPC \
|
|
protocol in C++. JSON-RPC is a lightweight remote procedure \
|
|
call protocol similar to XML-RPC."
|
|
HOMEPAGE = "https://github.com/cinemast/libjson-rpc-cpp"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4e728c5b36018f6c383b4b9efd9c8840"
|
|
SECTION = "libs"
|
|
|
|
DEPENDS = "curl jsoncpp libmicrohttpd hiredis"
|
|
|
|
SRC_URI = "git://github.com/cinemast/libjson-rpc-cpp"
|
|
SRCREV = "4ed5b00dcc409405a19e6d8c6478f703153430e1"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG ?= ""
|
|
PACKAGECONFIG[coverage] = "-DWITH_COVERAGE=YES,-DWITH_COVERAGE=NO,,"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE += "-DCOMPILE_TESTS=NO -DCOMPILE_STUBGEN=NO -DCOMPILE_EXAMPLES=NO \
|
|
-DBUILD_SHARED_LIBS=YES -DBUILD_STATIC_LIBS=YES \
|
|
-DCMAKE_LIBRARY_PATH=${libdir} \
|
|
"
|
|
|
|
FILES_${PN}-dev += "${libdir}/libjson-rpc-cpp/cmake"
|