From: Kefu Chai Date: Wed, 20 Jul 2016 07:15:17 +0000 (+0800) Subject: cmake: remove $UNITTEST_CXX_FLAGS from ceph-kvstore-tool's linked libs X-Git-Tag: ses5-milestone5~345^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=48da9f94cf2d5473e733778ecea37a467179df3f;p=ceph.git cmake: remove $UNITTEST_CXX_FLAGS from ceph-kvstore-tool's linked libs it does not make sense to link against CXX_FLAGS. Signed-off-by: Kefu Chai --- diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index a93a96add529..d57c453d2412 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -42,7 +42,7 @@ target_link_libraries(ceph-client-debug cephfs librados global common) install(TARGETS ceph-client-debug DESTINATION bin) add_executable(ceph-kvstore-tool ceph_kvstore_tool.cc) -target_link_libraries(ceph-kvstore-tool os global ${UNITTEST_CXX_FLAGS}) +target_link_libraries(ceph-kvstore-tool os global) install(TARGETS ceph-kvstore-tool DESTINATION bin) set(ceph_conf_srcs ceph_conf.cc)