Add an option override the autodetected directory for installing bash completions

This commit is contained in:
olszomal 2022-12-01 11:42:13 +01:00 committed by Michał Trojnara
parent c718882ffb
commit f57b469c29
2 changed files with 11 additions and 4 deletions

View File

@ -60,6 +60,7 @@ You may need to use `cmake3` instead of `cmake` to complete the following steps
-DCMAKE_C_COMPILER=clang -DCMAKE_C_COMPILER=clang
-DCMAKE_PREFIX_PATH=[openssl directory];[curl directory] -DCMAKE_PREFIX_PATH=[openssl directory];[curl directory]
-DCMAKE_INSTALL_PREFIX=[installation directory] -DCMAKE_INSTALL_PREFIX=[installation directory]
-DBASH_COMPLETION_USER_DIR=[bash completion installation directory]
``` ```
* Then call that build system to actually compile/link the osslsigncode project (alias `make`): * Then call that build system to actually compile/link the osslsigncode project (alias `make`):

View File

@ -1,13 +1,19 @@
if(NOT MSVC) if(NOT MSVC)
find_package(bash-completion QUIET) find_package(bash-completion QUIET)
if(BASH_COMPLETION_USER_DIR)
set(BASH_COMPLETION_COMPLETIONSDIR ${BASH_COMPLETION_USER_DIR}/bash-completion/completions)
endif(BASH_COMPLETION_USER_DIR)
if(NOT BASH_COMPLETION_COMPLETIONSDIR) if(NOT BASH_COMPLETION_COMPLETIONSDIR)
if(BASH_COMPLETION_COMPATDIR) if(BASH_COMPLETION_COMPATDIR)
set(BASH_COMPLETION_COMPLETIONSDIR ${BASH_COMPLETION_COMPATDIR}) set(BASH_COMPLETION_COMPLETIONSDIR ${BASH_COMPLETION_COMPATDIR})
else() else(BASH_COMPLETION_COMPATDIR)
set(SHAREDIR "${CMAKE_INSTALL_PREFIX}/share") set(SHAREDIR "${CMAKE_INSTALL_PREFIX}/share")
set(BASH_COMPLETION_COMPLETIONSDIR "${SHAREDIR}/bash-completion/completions") set(BASH_COMPLETION_COMPLETIONSDIR "${SHAREDIR}/bash-completion/completions")
endif() endif(BASH_COMPLETION_COMPATDIR)
endif() endif(NOT BASH_COMPLETION_COMPLETIONSDIR)
message(STATUS "Using bash completions dir ${BASH_COMPLETION_COMPLETIONSDIR}") message(STATUS "Using bash completions dir ${BASH_COMPLETION_COMPLETIONSDIR}")
install(FILES "osslsigncode.bash" DESTINATION ${BASH_COMPLETION_COMPLETIONSDIR}) install(FILES "osslsigncode.bash" DESTINATION ${BASH_COMPLETION_COMPLETIONSDIR})
endif() endif(NOT MSVC)