From 3c5ae6c7d012a99694dcf4daddb6a5c5d9fadae4 Mon Sep 17 00:00:00 2001 From: Adam Kupczyk Date: Wed, 3 Jul 2024 14:17:43 +0000 Subject: [PATCH] os/bluestore: Add libfmt to "os" Using fmt::format requires libfmt for linking Signed-off-by: Adam Kupczyk --- src/os/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/os/CMakeLists.txt b/src/os/CMakeLists.txt index 98b8a48946f..a27656697df 100644 --- a/src/os/CMakeLists.txt +++ b/src/os/CMakeLists.txt @@ -43,7 +43,8 @@ endif() add_library(os STATIC ${libos_srcs}) target_link_libraries(os legacy-option-headers - blk) + blk + ${FMT_LIB}) target_link_libraries(os heap_profiler kv) -- 2.39.5