summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.11.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.11.0.bb')
-rw-r--r--meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.11.0.bb36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.11.0.bb b/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.11.0.bb
new file mode 100644
index 0000000000..bd6dcef4e3
--- /dev/null
+++ b/meta-oe/recipes-devtools/flatbuffers/flatbuffers_1.11.0.bb
@@ -0,0 +1,36 @@
1SUMMARY = "Memory Efficient Serialization Library"
2HOMEPAGE = "https://github.com/google/flatbuffers"
3SECTION = "console/tools"
4LICENSE = "Apache-2.0"
5
6PACKAGE_BEFORE_PN = "${PN}-compiler"
7
8RDEPENDS_${PN}-compiler = "${PN}"
9RDEPENDS_${PN}-dev += "${PN}-compiler"
10
11LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a873c5645c184d51e0f9b34e1d7cf559"
12
13SRCREV = "9e7e8cbe9f675123dd41b7c62868acad39188cae"
14
15SRC_URI = "git://github.com/google/flatbuffers.git \
16 file://0001-Add-detection-of-strtoull_l-function.patch \
17 "
18
19# Make sure C++11 is used, required for example for GCC 4.9
20CXXFLAGS += "-std=c++11"
21BUILD_CXXFLAGS += "-std=c++11"
22
23# BUILD_TYPE=Release is required, otherwise flatc is not installed
24EXTRA_OECMAKE += "\
25 -DCMAKE_BUILD_TYPE=Release \
26 -DFLATBUFFERS_BUILD_TESTS=OFF \
27 -DFLATBUFFERS_BUILD_SHAREDLIB=ON \
28"
29
30inherit cmake
31
32S = "${WORKDIR}/git"
33
34FILES_${PN}-compiler = "${bindir}"
35
36BBCLASSEXTEND = "native nativesdk"