mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
14 lines
538 B
CMake
14 lines
538 B
CMake
if(NOT MSVC)
|
|
find_package(bash-completion QUIET)
|
|
if(NOT BASH_COMPLETION_COMPLETIONSDIR)
|
|
if(BASH_COMPLETION_COMPATDIR)
|
|
set(BASH_COMPLETION_COMPLETIONSDIR ${BASH_COMPLETION_COMPATDIR})
|
|
else()
|
|
set(SHAREDIR "${CMAKE_INSTALL_PREFIX}/share")
|
|
set(BASH_COMPLETION_COMPLETIONSDIR "${SHAREDIR}/bash-completion/completions")
|
|
endif()
|
|
endif()
|
|
message(STATUS "Using bash completions dir ${BASH_COMPLETION_COMPLETIONSDIR}")
|
|
install(FILES "osslsigncode.bash" DESTINATION ${BASH_COMPLETION_COMPLETIONSDIR})
|
|
endif()
|