From 63c690a7775e991d8ab9df39d8be7b643f083c16 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 +++++ 1 file changed, 5 insertions(+) create mode 100644 build-config/quill/meson.build diff --git a/build-config/quill/meson.build b/build-config/quill/meson.build new file mode 100644 index 0000000..3c5a89d --- /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