mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Install Bash completion script.
This commit is contained in:
parent
5564469b96
commit
620557ccbc
1 changed files with 6 additions and 0 deletions
|
@ -137,10 +137,12 @@ add_library (gflags ${GFLAGS_SRCS})
|
|||
# ----------------------------------------------------------------------------
|
||||
# installation
|
||||
if (WIN32)
|
||||
set (RUNTIME_INSTALL_DIR Bin)
|
||||
set (LIBRARY_INSTALL_DIR Lib)
|
||||
set (INCLUDE_INSTALL_DIR Include)
|
||||
set (CONFIG_INSTALL_DIR CMake)
|
||||
else ()
|
||||
set (RUNTIME_INSTALL_DIR bin)
|
||||
set (LIBRARY_INSTALL_DIR lib)
|
||||
set (INCLUDE_INSTALL_DIR include)
|
||||
set (CONFIG_INSTALL_DIR lib/cmake/${PACKAGE_NAME})
|
||||
|
@ -166,6 +168,10 @@ install (
|
|||
|
||||
install (EXPORT gflags-lib DESTINATION ${CONFIG_INSTALL_DIR} FILE ${PACKAGE_NAME}-export.cmake)
|
||||
|
||||
if (UNIX)
|
||||
install (PROGRAMS src/gflags_completions.sh DESTINATION ${RUNTIME_INSTALL_DIR})
|
||||
endif ()
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# support direct use of build tree
|
||||
set (INSTALL_PREFIX_REL2CONFIG_DIR .)
|
||||
|
|
Loading…
Add table
Reference in a new issue