summaryrefslogtreecommitdiffstats
path: root/src/test/dokan/CMakeLists.txt
blob: 71029d38660310236fedbae371194847a7e0b724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
if(WITH_DOKAN)
  add_executable(ceph_test_dokan
    dokan.cc
  )
  target_link_libraries(ceph_test_dokan
    ceph-common
    ${UNITTEST_LIBS}
    ${EXTRALIBS}
    ${CMAKE_DL_LIBS}
    )
  install(TARGETS ceph_test_dokan
    DESTINATION ${CMAKE_INSTALL_BINDIR})
endif(WITH_DOKAN)