aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cmake
diff options
context:
space:
mode:
authorokapia <okiddle@yahoo.co.uk>2018-06-18 14:59:12 +0200
committerGitHub <noreply@github.com>2018-06-18 14:59:12 +0200
commit5bf2eeb6dec1025b6465079d11c98dfcee07717e (patch)
tree9a71af03fafe6ffd7ce40eb4bd1877df1e267635 /src/_cmake
parentMerge pull request #544 from pseyfert/cmake_options (diff)
parentadd CMAKE_PREFIX_PATH to cmake completion (diff)
downloadzsh-completions-5bf2eeb6dec1025b6465079d11c98dfcee07717e.tar
zsh-completions-5bf2eeb6dec1025b6465079d11c98dfcee07717e.tar.gz
zsh-completions-5bf2eeb6dec1025b6465079d11c98dfcee07717e.tar.bz2
zsh-completions-5bf2eeb6dec1025b6465079d11c98dfcee07717e.tar.lz
zsh-completions-5bf2eeb6dec1025b6465079d11c98dfcee07717e.tar.xz
zsh-completions-5bf2eeb6dec1025b6465079d11c98dfcee07717e.tar.zst
zsh-completions-5bf2eeb6dec1025b6465079d11c98dfcee07717e.zip
Merge pull request #546 from pseyfert/cmake_module_path
add CMAKE_PREFIX_PATH to cmake completion
Diffstat (limited to 'src/_cmake')
-rw-r--r--src/_cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/_cmake b/src/_cmake
index ba468af..93ff328 100644
--- a/src/_cmake
+++ b/src/_cmake
@@ -302,7 +302,8 @@ _cmake_define_lang_property_names() {
(( $+functions[_cmake_define_common_property_names] )) ||
_cmake_define_common_property_names() {
local properties; properties=(
- 'CMAKE_MODULE_PATH:Search path for cmake modules'
+ 'CMAKE_MODULE_PATH:Search path for cmake modules (FindPROJECT.cmake)'
+ 'CMAKE_PREFIX_PATH:Search path for installations (PROJECTConfig.cmake)'
'CMAKE_BUILD_TYPE:Specifies the build type for make based generators'
'CMAKE_TOOLCHAIN_FILE:Absolute or relative path to a cmake script which sets up toolchain related variables'
'CMAKE_COLOR_MAKEFILE:Enables/disables color output when using the Makefile generator'