From: Lucian Petrut Date: Wed, 19 Apr 2023 13:11:36 +0000 (+0000) Subject: test: link timer test against libceph-common X-Git-Tag: v19.0.0~575^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0a5641d196e6d98faec895d60db84c73cc3a4ff0;p=ceph.git test: link timer test against libceph-common This test currently failes to build for Windows using llvm due to unresolved symbols. We'll address the issue by explicitly specifying the ceph-common dependency. Signed-off-by: Lucian Petrut --- diff --git a/src/test/common/CMakeLists.txt b/src/test/common/CMakeLists.txt index 200fd3990b93..c68d8639f4c5 100644 --- a/src/test/common/CMakeLists.txt +++ b/src/test/common/CMakeLists.txt @@ -372,6 +372,7 @@ add_ceph_unittest(unittest_cdc) add_executable(unittest_ceph_timer test_ceph_timer.cc) add_ceph_unittest(unittest_ceph_timer) +target_link_libraries(unittest_ceph_timer ceph-common) add_executable(unittest_option test_option.cc) target_link_libraries(unittest_option ceph-common GTest::Main)