From 2d27b119bdc3600b4d0a978e71f59b4f2e6a1ca7 Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Sun, 23 Feb 2025 11:25:11 -0500 Subject: [PATCH] build(quill): added quill as a subproject quill provides a robust and very efficient asyncronous and thread safe logging module. I have brought this in to handle logging --- build-config/quill/meson.build | 5 +++++ subprojects/quill.wrap | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 build-config/quill/meson.build create mode 100644 subprojects/quill.wrap diff --git a/build-config/quill/meson.build b/build-config/quill/meson.build new file mode 100644 index 00000000..3c5a89d8 --- /dev/null +++ b/build-config/quill/meson.build @@ -0,0 +1,5 @@ +quill_sp = cmake.subproject( + 'quill' +) +quill_dep = quill_sp.dependency('quill') +add_project_arguments('-I' + meson.current_build_dir() + '/subprojects/quill/__CMake_build', language: 'cpp') \ No newline at end of file diff --git a/subprojects/quill.wrap b/subprojects/quill.wrap new file mode 100644 index 00000000..d8576412 --- /dev/null +++ b/subprojects/quill.wrap @@ -0,0 +1,5 @@ +[wrap-git] +url = https://github.com/odygrd/quill +revision = v8.1.1 + +[cmake] \ No newline at end of file