Merge pull request #7314 from tchaikov/wip-fix-cmake

cmake: let ceph-client-debug link with tcmalloc
This commit is contained in:
Casey Bodley 2016-01-25 09:55:26 -05:00
commit a76ea6fb7c

View File

@ -804,7 +804,7 @@ add_library(compressor STATIC ${compressor_srcs})
target_link_libraries(compressor common snappy)
add_executable(ceph-client-debug tools/ceph-client-debug.cc)
target_link_libraries(ceph-client-debug cephfs librados global common)
target_link_libraries(ceph-client-debug cephfs librados global common ${ALLOC_LIBS})
install(TARGETS ceph-client-debug DESTINATION bin/debug)
add_executable(ceph-kvstore-tool tools/ceph_kvstore_tool.cc)