]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cmake: do not link messenger tests against libos
authorKefu Chai <kchai@redhat.com>
Tue, 9 May 2017 04:51:26 +0000 (12:51 +0800)
committerKefu Chai <kchai@redhat.com>
Tue, 9 May 2017 07:06:39 +0000 (15:06 +0800)
objectstore is not used by these tests.

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

index ebdd00f2081637d4bf83635e76ed50b4cb6f6ebd..7981fa6d5cbfa04766d0d3a359a7915ebcad55eb 100644 (file)
@@ -3,7 +3,7 @@ add_executable(simple_server
   simple_dispatcher.cc
   )
 target_link_libraries(simple_server
-  os global ceph-common
+  global ceph-common
   ${EXTRALIBS}
   ${CMAKE_DL_LIBS}
   )
@@ -13,7 +13,7 @@ add_executable(simple_client
   simple_dispatcher.cc
   )
 target_link_libraries(simple_client
-  os global ceph-common
+  global ceph-common
   ${EXTRALIBS}
   ${CMAKE_DL_LIBS}
   )
@@ -24,7 +24,7 @@ if(HAVE_XIO)
     xio_dispatcher.cc
     )
   target_link_libraries(xio_server
-    os global ceph-common
+    global ceph-common
     ${XIO_LIBRARY} pthread rt
     ${EXTRALIBS}
     ${CMAKE_DL_LIBS}
@@ -35,7 +35,7 @@ if(HAVE_XIO)
     xio_dispatcher.cc
     )
   target_link_libraries(xio_client
-    os global ceph-common
+    global ceph-common
     ${XIO_LIBRARY} pthread rt
     ${EXTRALIBS}
     ${CMAKE_DL_LIBS}