summaryrefslogtreecommitdiffstats
path: root/src/test/messenger/CMakeLists.txt
blob: 7981fa6d5cbfa04766d0d3a359a7915ebcad55eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
add_executable(simple_server
  simple_server.cc
  simple_dispatcher.cc
  )
target_link_libraries(simple_server
  global ceph-common
  ${EXTRALIBS}
  ${CMAKE_DL_LIBS}
  )

add_executable(simple_client
  simple_client.cc
  simple_dispatcher.cc
  )
target_link_libraries(simple_client
  global ceph-common
  ${EXTRALIBS}
  ${CMAKE_DL_LIBS}
  )

if(HAVE_XIO)
  add_executable(xio_server
    xio_server.cc
    xio_dispatcher.cc
    )
  target_link_libraries(xio_server
    global ceph-common
    ${XIO_LIBRARY} pthread rt
    ${EXTRALIBS}
    ${CMAKE_DL_LIBS}
    )

  add_executable(xio_client
    xio_client.cc
    xio_dispatcher.cc
    )
  target_link_libraries(xio_client
    global ceph-common
    ${XIO_LIBRARY} pthread rt
    ${EXTRALIBS}
    ${CMAKE_DL_LIBS}
    )
endif(HAVE_XIO)