summaryrefslogtreecommitdiffstats
path: root/Help/command/cmake_host_system_information.rst
Commit message (Collapse)AuthorAgeFilesLines
* Help: Replace link with its http redirectBrad King2023-10-191-1/+1
|
* cmake_host_system_information: Add MSYSTEM_PREFIX queryBrad King2023-09-101-0/+7
| | | | | | | Add a query on Windows hosts for the installation prefix of a MSYS or MinGW development environment. Issue: #24216
* Help: Use `code-block:: cmake` instead of `::` for sub-commands descriptionsAlex Turbov2022-11-071-1/+1
| | | | | Most of CMake commands use syntax highlighting when describe sub-commands syntax. Fix a few of them to be like others...
* cmake_host_system_information(WINDOWS_REGISTRY) updatesMarc Chevrier2022-05-011-0/+2
| | | | | * add a cross-reference in 'get_filename_component()' documentation * rework tests for better 32bit systems support
* cmake_host_system_information: query windows registryMarc Chevrier2022-04-131-3/+149
| | | | Fixes: #21240, #23367
* cmake_host_system_information: Make it available for all systemsAlex Turbov2021-08-201-4/+2
| | | | Before it was Linux only.
* cmake_host_system_information: Can run fallback scriptsAlex Turbov2021-08-201-0/+67
|
* cmake_host_system_information: Can read `/etc/os-release` fileAlex Turbov2021-08-201-0/+45
|
* Documentation: Use definition list instead of tablesAlex Turbov2021-07-301-39/+119
| | | | | Transform tables into definition list for `cmake_host_system_information` command manual.
* Help: Add `.. versionadded` directives to commands documentationNikita Nemkin2020-11-091-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change ony concerns directives that appear in the document body. The guidelines for inserting version directives: * Baseline version is CMake 3.0, i.e. directives start at 3.1. * Always use `.. versionadded::` directive, avoid ad-hoc version references. Exception: policy pages. * For new command signatures, put `versionadded` on a separate line after the signature. * For a group of new signatures in a new document section, a single version note at the beginning of the section is sufficient. * For new options, put `versionadded` on a separate line before option description. * If all the option descriptions in the list are short one-liners, it's fine to put `versionadded` on the same line as the description. * If multiple option descriptions in close proximity would have the same ..versionadded directive, consider adding a single directive after the list, mentioning all added options. * For compact value lists and sub-option lists, put a single `versionadded` directive after the list mentioning all additions. * When a change is described in a single paragraph, put `versionadded` into that paragraph. * When only part of the paragraph has changed, separate the changed part if it doesn't break the flow. Otherwise, write a follow-up clarification paragraph and apply version directive to that. * When multiple version directives are close by, order earlier additions before later additions. * Indent related lists and code blocks to include them in the scope of `versionadded` directive. Issue: #19715
* Help: Revise docs on Scripting CommandsJoachim Wuttke (l)2018-10-231-1/+1
| | | | | | | | | | | | | | | | | | | Revise docs for all "Scripting Commands", except four find_XXX that use a macro suite of their own. * Take full advantage of the improved syntax highlighting. * Make consequential use of <..> placeholders. * Clarify things here and there in the text. Specific improvements to some command docs: * "math": Correct description of novel hexadecimal capability. * "if", "foreach", "while": Provide link to "endif" etc * "foreach", "while": Mention "break" and "continue". * "foreach": Simplify explanation of ``RANGE`` and ``IN`` signatures; advise against negative arguments or reverse ranges (compare issue #18461) * "endif", "endfunction" etc: Explain that the argument is optional and maintained for compatibility only
* Help: Clarify cmake_host_system_information memory unitsTaylor Holberton2018-09-101-4/+8
| | | | | | The memory size query implementations report in units of one mebibyte (2^20). Clarify the unit in the documentation because "megabyte" might also be interpreted as 10^6.
* Help: Some spelling corrections for commands.Yee Fan2018-04-201-7/+7
|
* cmake_host_system_information: Add more keywordsFlorian Maushart2017-06-051-10/+31
| | | | | Extend the `cmake_host_system_information()` command to add processor identification keywords.
* Help: Improve formatting of command documentationMichael Scott2015-06-081-3/+3
| | | | | Use inline reStructuredText markup and add cross-references in more places.
* Convert builtin help to reStructuredText source filesKitware Robot2013-10-151-0/+25
Run the convert-help.bash script to convert documentation: ./convert-help.bash "/path/to/CMake-build/bin" Then remove it.