diff options
| author | Thuận Nguyễn-Thái <nguyenthaithuanalg@gmail.com> | 2025-04-17 14:53:42 +0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-04-19 14:36:05 -0700 |
| commit | c3b5b10f72483acf8663372346d056d5159452a5 (patch) | |
| tree | e1d9d5e147059fc4361759179b8c8d9ad37c4148 | |
| parent | 293cfe93f42d80743d98636dd40cce0664afb7a2 (diff) | |
| download | meta-openembedded-c3b5b10f72483acf8663372346d056d5159452a5.tar.gz | |
libsimplelog: Add C89-C++20 logger for cross-OS.
- Edit CMake
- Re-test Windows, Linux, MAC OSX.
Signed-off-by: Thuan Nguyen Thai <nguyenthaithuanalg@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-libsimplelog/libsimplelog/libsimplelog_git.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-oe/recipes-libsimplelog/libsimplelog/libsimplelog_git.bb b/meta-oe/recipes-libsimplelog/libsimplelog/libsimplelog_git.bb new file mode 100644 index 0000000000..461b960357 --- /dev/null +++ b/meta-oe/recipes-libsimplelog/libsimplelog/libsimplelog_git.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | |||
| 2 | SUMMARY = "simplelog-topc - Simple, STABLE, powerful of logging library in ANSI C/C++. Ready for billion records." | ||
| 3 | DESCRIPTION = "Async and Fast C/C++ multi-thread logger with topics. No external dependencies." | ||
| 4 | HOMEPAGE = "https://github.com/thuanalg/simplelog-topic" | ||
| 5 | LICENSE = "MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=22cdd382a6275cb4c2e75c517952ac7c" | ||
| 7 | |||
| 8 | SRC_URI = "git://github.com/thuanalg/simplelog-topic.git;branch=main;protocol=https" | ||
| 9 | |||
| 10 | PV = "1.0.4+git" | ||
| 11 | SRCREV = "781f5eaa1713e7f60e9ee79ab5143c0bacfcccef" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/git" | ||
| 14 | |||
| 15 | inherit cmake | ||
| 16 | |||
| 17 | # Specify any options you want to pass to cmake using EXTRA_OECMAKE: | ||
| 18 | EXTRA_OECMAKE += "-DUNIX_LINUX=1" | ||
| 19 | |||
| 20 | |||
