From: Sven Anderson Date: Fri, 21 May 2021 00:12:32 +0000 (+0200) Subject: include/cephfs: add cephfs headers to CMakeLists.txt X-Git-Tag: v17.1.0~1877^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a7454dff63d70f695087d96d11bbb94a986640b2;p=ceph.git include/cephfs: add cephfs headers to CMakeLists.txt If WITH_LIBCEPHFS is set, the cephfs headers are installed as well by the install target. Signed-off-by: Sven Anderson --- diff --git a/src/include/CMakeLists.txt b/src/include/CMakeLists.txt index dc3ecbb9f9bb..91eb92cdd1c6 100644 --- a/src/include/CMakeLists.txt +++ b/src/include/CMakeLists.txt @@ -36,3 +36,10 @@ if(WITH_RADOSGW) rados/rgw_file.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/rados) endif() + +if(WITH_LIBCEPHFS) + install(FILES + cephfs/libcephfs.h + cephfs/ceph_ll_client.h + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/cephfs) +endif()