From 4d6eed0bb3c5437478e77005cfb2c4b0b4ea3607 Mon Sep 17 00:00:00 2001 From: Milind Changire Date: Thu, 14 Nov 2024 09:14:03 +0530 Subject: [PATCH] test/common: keeping build happy Since ceph_pthread_setname() has now been moved from a macro to a function, we need to reference the common library to link it to. Signed-off-by: Milind Changire --- src/test/common/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/common/CMakeLists.txt b/src/test/common/CMakeLists.txt index 11e111115d7f9..3d21db73b1292 100644 --- a/src/test/common/CMakeLists.txt +++ b/src/test/common/CMakeLists.txt @@ -356,6 +356,7 @@ target_link_libraries(unittest_cdc global ceph-common) add_ceph_unittest(unittest_cdc) add_executable(unittest_ceph_timer test_ceph_timer.cc) +target_link_libraries(unittest_ceph_timer ceph-common) add_ceph_unittest(unittest_ceph_timer) add_executable(unittest_option test_option.cc) -- 2.39.5