summaryrefslogtreecommitdiffstats
path: root/src/bash_completion/CMakeLists.txt
blob: 8d834774d77d71e62c7f0a5431d14d764a981fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
set(completions
  ceph
  rados)

if(WITH_RBD)
  list(APPEND completions rbd)
endif()

if(WITH_RADOSGW)
  list(APPEND completions radosgw-admin)
endif()

install(FILES ${completions}
  DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/bash_completion.d)