]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cmake: remove $UNITTEST_CXX_FLAGS from ceph-kvstore-tool's linked libs
authorKefu Chai <kchai@redhat.com>
Wed, 20 Jul 2016 07:15:17 +0000 (15:15 +0800)
committerKefu Chai <kchai@redhat.com>
Wed, 20 Jul 2016 07:16:39 +0000 (15:16 +0800)
it does not make sense to link against CXX_FLAGS.

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/tools/CMakeLists.txt

index a93a96add5291be8b8523cb89ebf5028a6812994..d57c453d24122b75be215bb727b8712f75d3ea97 100644 (file)
@@ -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)