diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2026-03-31 09:59:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-31 09:59:52 +0900 |
| commit | adad765241061b9b63485991f268b2771524ed42 (patch) | |
| tree | 8d04f351d4e7e9c57f6a3d2e3fb8d7af3922db36 | |
| parent | Merge pull request #1244 from zsh-users/perl-package-managers (diff) | |
| parent | Update cmake completion to version 4.3.0 (diff) | |
| download | zsh-completions-adad765241061b9b63485991f268b2771524ed42.tar zsh-completions-adad765241061b9b63485991f268b2771524ed42.tar.gz zsh-completions-adad765241061b9b63485991f268b2771524ed42.tar.bz2 zsh-completions-adad765241061b9b63485991f268b2771524ed42.tar.lz zsh-completions-adad765241061b9b63485991f268b2771524ed42.tar.xz zsh-completions-adad765241061b9b63485991f268b2771524ed42.tar.zst zsh-completions-adad765241061b9b63485991f268b2771524ed42.zip | |
Merge pull request #1254 from zsh-users/update_cmake
Update cmake completion to version 4.3.0
| -rw-r--r-- | src/_cmake | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -28,7 +28,7 @@ # Description # ----------- # -# Completion script for CMake 3.31.0 (https://cmake.org). +# Completion script for CMake 4.3.0 (https://cmake.org). # # ------------------------------------------------------------------------- # Authors @@ -62,6 +62,7 @@ local -a cmake_build_options=( '-A[Specify platform name if supported by generator]:platform name' '--toolchain[Specify toolchain file]: :_files' '--install-prefix[Specify install directory]: :_path_files -/' + '--project-file[Specify an alternate project file name]:name' # Warnings '(-Wdev)-Wno-dev[Suppress/Enable developer warnings]' @@ -115,6 +116,7 @@ local -a cmake_build_options=( '--warn-unused-vars[Warn about unused variables]' '--check-system-vars[Find problems with variable usage in system files]' '--compile-no-warning-as-error[Ignore COMPILE_WARNING_AS_ERROR property and CMAKE_COMPILE_WARNING_AS_ERROR variable]' + '--link-no-warning-as-error[Ignore LINK_WARNING_AS_ERROR and CMAKE_LINK_WARNING_AS_ERROR]' '--profiling-format[Output data for profiling CMake scripts]:profiling format:(google-trace)' '--profiling-output[Select an output path for the profiling data]:filename:_files' |
