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