blob: 605ca2f67c73ff7eaa4662dea44bb554f0704804 (
plain)
1
2
3
4
5
6
7
8
9
10
|
find_package(PkgConfig QUIET REQUIRED)
pkg_check_modules(CAPNG REQUIRED libcap-ng)
set(mount_ceph_srcs
mount.ceph.c conf.cc)
add_executable(mount.ceph ${mount_ceph_srcs}
$<TARGET_OBJECTS:parse_secret_objs>
$<TARGET_OBJECTS:common_mountcephfs_objs>)
target_link_libraries(mount.ceph keyutils::keyutils ${CAPNG_LIBRARIES} global ceph-common)
install(TARGETS mount.ceph DESTINATION ${CMAKE_INSTALL_SBINDIR})
|