summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/fmt/fmt_10.2.1.bb
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2024-06-11 22:32:54 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-06-12 16:08:31 +0100
commite2961db409336bcb64be4831993b4d36fc0c1e28 (patch)
tree5d6f58079201b7e70c397376b2a05864087be77b /meta/recipes-devtools/fmt/fmt_10.2.1.bb
parentb6362a9fe6f19f2bc22b2ff99b7a5ccf9a140a5a (diff)
downloadpoky-e2961db409336bcb64be4831993b4d36fc0c1e28.tar.gz
fmt: Add it from meta-oe for ccache 4.10
It is required by ccache 4.10, from cmake/Dependencies.cmake: find_package(Fmt 8.0.0 MODULE REQUIRED) (From OE-Core rev: 473b80caab466538557796c188554ea1dc0a0480) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/fmt/fmt_10.2.1.bb')
-rw-r--r--meta/recipes-devtools/fmt/fmt_10.2.1.bb16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-devtools/fmt/fmt_10.2.1.bb b/meta/recipes-devtools/fmt/fmt_10.2.1.bb
new file mode 100644
index 0000000000..1437eb4803
--- /dev/null
+++ b/meta/recipes-devtools/fmt/fmt_10.2.1.bb
@@ -0,0 +1,16 @@
1SUMMARY = "open-source formatting library for C++"
2DESCRIPTION = "{fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams."
3HOMEPAGE = "https://fmt.dev"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=b9257785fc4f3803a4b71b76c1412729"
6
7SRC_URI = "git://github.com/fmtlib/fmt;branch=10.x;protocol=https"
8SRCREV = "e69e5f977d458f2650bb346dadf2ad30c5320281"
9
10S = "${WORKDIR}/git"
11
12inherit cmake
13
14EXTRA_OECMAKE += "-DBUILD_SHARED_LIBS=ON"
15
16BBCLASSEXTEND = "native nativesdk"