From: Willem Jan Withagen Date: Tue, 28 Feb 2017 08:32:38 +0000 (+0100) Subject: src/test/librbd/CMakeLists.txt: Need to exclude the fsx executable also on FreeBSD X-Git-Tag: v12.0.1~231^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=285afdeeb026730ef64f3893ad836239b6e2a151;p=ceph.git src/test/librbd/CMakeLists.txt: Need to exclude the fsx executable also on FreeBSD Signed-off-by: Willem Jan Withagen --- diff --git a/src/test/librbd/CMakeLists.txt b/src/test/librbd/CMakeLists.txt index 710ae1276df0..24cf0b152ae9 100644 --- a/src/test/librbd/CMakeLists.txt +++ b/src/test/librbd/CMakeLists.txt @@ -125,25 +125,27 @@ set_target_properties(ceph_test_librbd_api PROPERTIES COMPILE_FLAGS ${UNITTEST_CXX_FLAGS}) if(LINUX) -add_executable(ceph_test_librbd_fsx - fsx.cc - $ - ) -target_link_libraries(ceph_test_librbd_fsx - librbd - librados - journal - krbd - global - m - ${CMAKE_DL_LIBS} - ${CRYPTO_LIBS} - ${EXTRALIBS} - ) + add_executable(ceph_test_librbd_fsx + fsx.cc + $ + ) + target_link_libraries(ceph_test_librbd_fsx + librbd + librados + journal + krbd + global + m + ${CMAKE_DL_LIBS} + ${CRYPTO_LIBS} + ${EXTRALIBS} + ) + install(TARGETS + ceph_test_librbd_fsx + DESTINATION ${CMAKE_INSTALL_BINDIR}) endif(LINUX) install(TARGETS ceph_test_librbd ceph_test_librbd_api - ceph_test_librbd_fsx DESTINATION ${CMAKE_INSTALL_BINDIR})