From cc35d9b4b5af72ab021526449fcea6296b6f4604 Mon Sep 17 00:00:00 2001 From: John Spray Date: Mon, 3 Aug 2015 12:51:42 +0100 Subject: [PATCH] CMake: fix cephfs test targets These had bad lib names. Signed-off-by: John Spray --- src/test/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt index 45cf2aae8c28d..bc796d608a35d 100644 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -1571,7 +1571,7 @@ if(${WITH_CEPHFS}) set_target_properties(test_libcephfs PROPERTIES COMPILE_FLAGS ${UNITTEST_CXX_FLAGS}) target_link_libraries(test_libcephfs - libcephfs + cephfs ${UNITTEST_LIBS} ${EXTRALIBS} ${TCMALLOC_LIBS} @@ -1776,9 +1776,9 @@ if(${WITH_CEPHFS}) ) target_link_libraries(test_c_headers librados - rados - libcephfs + cephfs ${EXTRALIBS} + ${BLKID_LIBRARIES} ${TCMALLOC_LIBS} ${CMAKE_DL_LIBS} ) -- 2.39.5