blob: 2b5f4a7d4ad73dfcfac618d2c033e7592bd8c9ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
add_subdirectory(dashboard)
add_subdirectory(insights)
add_subdirectory(ansible)
add_subdirectory(orchestrator_cli)
# Location needs to match default setting for mgr_module_path, currently:
# OPTION(mgr_module_path, OPT_STR, CEPH_PKGLIBDIR "/mgr")
install(DIRECTORY
${CMAKE_CURRENT_SOURCE_DIR}
DESTINATION ${CEPH_INSTALL_DATADIR}
REGEX "CMakeLists.txt" EXCLUDE
REGEX "\\.gitignore" EXCLUDE
REGEX "hello/.*" EXCLUDE
REGEX "osd_perf_query/.*" EXCLUDE)
|