| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update cmake completion version 3.31 | Shohei YOSHIDA | 2025-07-10 | 1 | -1/+5 |
| | | |||||
| * | Add -DBUILD_SHARED_LIBS completion for cmake completions | Jeremy Rifkin | 2023-11-13 | 1 | -0/+2 |
| | | |||||
| * | Fix broken boolean parameter completion | Shohei YOSHIDA | 2022-12-03 | 1 | -8/+11 |
| | | |||||
| * | Update cmake completion | Shohei YOSHIDA | 2022-11-18 | 1 | -76/+84 |
| | | |||||
| * | Extract generators from 'cmake --help' | Shohei YOSHIDA | 2022-11-02 | 1 | -17/+2 |
| | | |||||
| * | Update cmake options for version 3.24 | Shohei YOSHIDA | 2022-08-10 | 1 | -0/+2 |
| | | |||||
| * | _cmake: fix cmake presets for real | Norbert Lange | 2022-07-19 | 1 | -7/+6 |
| | | | | | | | | | support presets without descriptions, and modify the commandline to add --list-presets at the end. Improve how cmake presets are listed, should be more robust in regards to quoting. | ||||
| * | Rewrite JSON parsing code in Perl for portability | Shohei YOSHIDA | 2022-02-24 | 1 | -13/+6 |
| | | |||||
| * | re-write to use python, hopefully this is portable enough, tested with ↵ | Huw Percival | 2022-02-23 | 1 | -4/+12 |
| | | | | | python 3.6.5 anf 2.7.18 | ||||
| * | fix presets | Huw Percival | 2022-02-22 | 1 | -1/+1 |
| | | |||||
| * | Use correct makefile for target completion | Aske Bækdal Møller | 2021-01-16 | 1 | -1/+1 |
| | | |||||
| * | CMake: note myself as additional author | Norbert Lange | 2020-12-25 | 1 | -0/+1 |
| | | |||||
| * | CMake: udpate generators list | Norbert Lange | 2020-12-25 | 1 | -14/+18 |
| | | |||||
| * | CMake: Major update to options, adapted to 3.19 | Norbert Lange | 2020-12-25 | 1 | -21/+74 |
| | | | | | | | | | | | | | | | | | Now listed in the same order as the builtin help (CMake 3.19), for easier audit in the feature. Commands and descriptions updated. Support for listing presets. Use this command to create output for comparison (not 100% exact obviously): cmake --help | sed -n "s,^ *\(--*[^= ]*\).* = *\([^=]*\), '\1[\2]',p" | sed 's,\.],],' | ||||
| * | CMake: add -E command completions | Norbert Lange | 2020-12-25 | 1 | -5/+37 |
| | | |||||
| * | CMake: Completely overhaul help command completions | Norbert Lange | 2020-12-25 | 1 | -52/+28 |
| | | | | | | | Several argument names where wrong, completed all available -list functions, escape brackets in the list, etc. | ||||
| * | CMake: Turn some property values into local arrays | Norbert Lange | 2020-12-25 | 1 | -61/+16 |
| | | | | | Update C/C++ Standards supported aswell | ||||
| * | CMake: fix option completion after first argument | Norbert Lange | 2020-12-25 | 1 | -3/+4 |
| | | | | | for some reason this just ended after the first option. | ||||
| * | support cmake --install related options | Zhuo Zhang | 2020-05-15 | 1 | -3/+78 |
| | | |||||
| * | Fix typos | Dimitris Apostolou | 2020-04-09 | 1 | -8/+8 |
| | | |||||
| * | Merge pull request #676 from pseyfert/cmake_unity | Shohei YOSHIDA | 2020-03-20 | 1 | -0/+4 |
| |\ | | | | | [cmake] updates for cmake 3.16 | ||||
| | * | cmake: new command line options | Paul Seyfert | 2020-01-01 | 1 | -0/+2 |
| | | | |||||
| | * | cmake: add CMAKE_UNITY_BUILD variable | Paul Seyfert | 2020-01-01 | 1 | -0/+2 |
| | | | |||||
| * | | Fix typo in _cmake (#672) | vaporwavy | 2020-01-17 | 1 | -1/+1 |
| |/ | |||||
| * | cmake: Add `--parallel` build option | Daniel Teunis | 2019-10-07 | 1 | -0/+5 |
| | | |||||
| * | Merge pull request #637 from pseyfert/cmake_generator_variable | Julien Nicoulaud | 2019-06-18 | 1 | -2/+4 |
| |\ | | | | | [cmake] complete CMAKE_GENERATOR environment variable values | ||||
| | * | [cmake] complete CMAKE_GENERATOR environment variable values | Paul Seyfert | 2019-06-13 | 1 | -2/+4 |
| | | | | | | | | | | | will be introduced in cmake 3.15 https://cmake.org/cmake/help/v3.15/manual/cmake-env-variables.7.html#environment-variables-that-control-the-build | ||||
| * | | provide CMAKE_<LANG>_COMPILER_LAUNCHER in cmake completion | Paul Seyfert | 2019-06-12 | 1 | -0/+15 |
| |/ | | | | https://cmake.org/cmake/help/latest/variable/CMAKE_LANG_COMPILER_LAUNCHER.html | ||||
| * | fixup based on review comment | Paul Seyfert | 2018-08-29 | 1 | -1/+1 |
| | | |||||
| * | use CPPFLAGS completion for CMAKE_CXX_FLAGS completion | Paul Seyfert | 2018-08-29 | 1 | -2/+2 |
| | | | | | | | | | | cmake -DCMAKE_*_FLAGS*=<TAB> will invoke _gcc as if one completes export CPPFLAGS=<TAB> Given that _gcc doesn't distinguish between CFLAGS, CPPFLAGS, or CXXFLAGS, neither do we here. | ||||
| * | shift words array before passing from _cmake to build tool | Paul Seyfert | 2018-06-25 | 1 | -9/+17 |
| | | | | | * this fixes #581 | ||||
| * | Merge pull request #577 from pseyfert/c_standards | okapia | 2018-06-18 | 1 | -0/+34 |
| |\ | | | | | extend cmake completion | ||||
| | * | added cxx and c language standards | Paul Seyfert | 2017-12-21 | 1 | -0/+34 |
| | | | |||||
| * | | Merge pull request #546 from pseyfert/cmake_module_path | okapia | 2018-06-18 | 1 | -1/+2 |
| |\ \ | | | | | | | add CMAKE_PREFIX_PATH to cmake completion | ||||
| | * | | add CMAKE_PREFIX_PATH to cmake completion | Paul Seyfert | 2017-12-12 | 1 | -1/+2 |
| | |/ | | | | | | | | | | | | | https://cmake.org/cmake/help/v3.3/variable/CMAKE_PREFIX_PATH.html * some packages provide no Find${PROJECT}.cmake file but a ${PROJECT}Config.cmake instead * providing these through CMAKE_MODULE_PATH just results in an error message, which points out one should've used CMAKE_PREFIX_PATH instead. | ||||
| * / | extend cmake completion | Paul Seyfert | 2017-11-17 | 1 | -2/+6 |
| |/ | | | | | | * added common properties for makefile verbosity * options are picked from https://stackoverflow.com/a/2673355 * explanation strings from the cmake documentation | ||||
| * | [_cmake] add CMAKE_MODULE_PATH to common property names | Paul Seyfert | 2016-10-30 | 1 | -0/+1 |
| | | |||||
| * | import updates from ↵ | Paul Seyfert | 2016-09-26 | 1 | -33/+158 |
| | | | | | pseyfert/zsh-cmake-completion@cc043d7ff6121c5c47eb21a267756e276d4e9d27 | ||||
| * | Fix a typo in the cmake script | Morgan Lieberthal | 2016-09-26 | 1 | -1/+1 |
| | | |||||
| * | #207: Add license header to _cmake, with explicit permission from Scott ↵0.19.0 | Julien Nicoulaud | 2016-07-18 | 1 | -1/+26 |
| | | | | | Kroll <skroll@gmail.com> | ||||
| * | Complete cmake property CMAKE_EXPORT_COMPILE_COMMANDS | Dave Lee | 2016-02-25 | 1 | -0/+2 |
| | | |||||
| * | Added '_cmake' completions. | Pablo Speciale | 2014-03-27 | 1 | -0/+274 |
| Original github repository: https://github.com/skroll/zsh-cmake-completion | |||||
