From 93ace63ff8bf104b55e6520f4c6db46132e4711f Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Tue, 5 Apr 2016 14:19:55 +0800 Subject: [PATCH] cmake: fix the build of test_rados_api_list the libglobal linkage was added in 769c0af, so add it to cmake accordingly. Signed-off-by: Kefu Chai --- src/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt index def49d5c169f5..1dcdcfc8924f3 100644 --- a/src/test/CMakeLists.txt +++ b/src/test/CMakeLists.txt @@ -1850,7 +1850,7 @@ add_executable(test_rados_api_list set_target_properties(test_rados_api_list PROPERTIES COMPILE_FLAGS ${UNITTEST_CXX_FLAGS}) target_link_libraries(test_rados_api_list - librados ${UNITTEST_LIBS} radostest) + librados global ${UNITTEST_LIBS} radostest) add_executable(test_rados_api_nlist librados/nlist.cc -- 2.39.5