The following is a guide to the CMake documentation source for developers. See documentation on CMake Development for more information.
The Help
directory contains CMake help manual source files.
They are written using the reStructuredText markup syntax and
processed by Sphinx to generate the CMake help manuals.
In addition to using Sphinx to generate the CMake help manuals, we
also use a C++-implemented document processor to print documents for
the --help-*
command-line help options. It supports a subset of
reStructuredText markup. When authoring or modifying documents,
please verify that the command-line help looks good in addition to the
Sphinx-generated html and man pages.
The command-line help processor supports the following constructs defined by reStructuredText, Sphinx, and a CMake extension to Sphinx.
code-block
directiveinclude
directive::
::
followed by a blank line treats
the following indented block as literal text without interpretation.
The command-line help processor prints the ::
literally and
prints the block content with common indentation replaced by one
space.note
directiveparsed-literal
directiveproductionlist
directivereplace
directive|substitution|
replacement.
The command-line help processor requires a substitution replacement
to be defined before it is referenced.|substitution|
referencereplace
directive. The command-line help processor
performs the substitution and replaces all newlines in the
replacement text with spaces.toctree
directiveversionadded
, versionchanged
directivesInline markup constructs not listed above are printed literally in the command-line help output. We prefer to use inline markup constructs that look correct in source form, so avoid use of \-escapes in favor of inline literals when possible.
Explicit markup blocks not matching directives listed above are removed from
command-line help output. Do not use them, except for plain ..
comments
that are removed by Sphinx too.
Note that nested indentation of blocks is not recognized by the command-line help processor. Therefore:
::
but not
at the top indentation level may consume all indented lines
following them.Try to avoid these cases in practice.
CMake adds a Sphinx Domain called cmake
, also called the
"CMake Domain". It defines several "object" types for CMake
documentation:
command
cpack_gen
-G
option.envvar
generator
-G
option.genex
manual
module
policy
prop_cache, prop_dir, prop_gbl, prop_sf, prop_inst, prop_test, prop_tgt
variable
Documentation objects in the CMake Domain come from two sources:
The CMake extension to Sphinx transforms every document named
with the form Help/<type>/<file-name>.rst
to a domain object with
type <type>
. The object name is extracted from the document title,
which is expected to be of the form:
<object-name> -------------
and to appear at or near the top of the .rst
file before any other lines
starting in a letter, digit, <
, or $
. If no such title appears
literally in the .rst
file, the object name is the <file-name>
.
If a title does appear, it is expected that <file-name>
is equal
to <object-name>
with any <
and >
characters removed,
or in the case of a $<genex-name>
or $<genex-name:...>
, the
genex-name
.
CMake Domain directives may be used in documents to explicitly define some object types:
Object types for which no directive is available must be defined using the document transform above.
The CMake Domain provides the following directives.
command
directiveDocument a "command" object:
.. command:: <command-name>
This indented block documents <command-name>.
The directive requires a single argument, the command name.
envvar
directiveDocument an "envvar" object:
.. envvar:: <envvar-name>
This indented block documents <envvar-name>.
The directive requires a single argument, the environment variable name.
genex
directiveDocument a "genex" object:
.. genex:: <genex-name>
This indented block documents <genex-name>.
The directive requires a single argument, the generator expression name.
The optional :target:
option allows a custom target name to be specified.
Because this will affect the ability to reference the "genex" object using the
:genex:
role, this option should be used very sparingly.
signature
directiveDocument CMake Command Signatures
within a Help/command/<command-name>.rst
document.
.. signature:: <command-name>(<signature>)
This indented block documents one or more signatures of a CMake command.
The signature
directive requires one argument, the signature summary:
::
.
The first signature may optionally be placed on the same line.
A blank line following the signature
directive will result in a
documentation generation error: 1 argument(s) required, 0 supplied
.)
of each
signature must be the last character on its line.signature
directive argument and specify the full
signature in a code-block
in the description.The signature
directive generates a hyperlink target for each signature:
Default target names are automatically extracted from leading "keyword"
arguments in the signatures, where a keyword is any sequence of
non-space starting with a letter. For example, the signature
string(REGEX REPLACE <match-regex> ...)
generates the target
REGEX REPLACE
, similar to .. _`REGEX REPLACE`:
.
Custom target names may be specified using a :target:
option.
For example:
.. signature::
cmake_path(GET <path-var> ROOT_NAME <out-var>)
cmake_path(GET <path-var> ROOT_PATH <out-var>)
:target:
GET ROOT_NAME
GET ROOT_PATH
Provide a custom target name for each signature, one per line.
The first target may optionally be placed on the same line as :target:
.
If a target name is already in use earlier in the document, no hyperlink target will be generated.
The targets may be referenced from within the same document using
`REF`_
or `TEXT <REF_>`_
syntax. Like reStructuredText section
headers, the targets do not work with Sphinx :ref:
syntax, however
they can be globally referenced using e.g. :command:`string(APPEND)`
.
Although whitespace in the signature is not preserved, by default, line breaks
are suppressed inside of square- or angle-brackets. This behavior can be
controlled using the :break:
option; note, however, that there is no way
to force a line break. The default value is 'smart'. Allowable values are:
all
smart
(default)<input>... [OUTPUT_VARIABLE <out-var>]
, a line break would be allowed
after <input>...
but not between OUTPUT_VARIABLE
and <out-var>
.verbatim
The directive treats its content as the documentation of the signature(s). Indent the signature documentation accordingly.
variable
directiveDocument a "variable" object:
.. variable:: <variable-name>
This indented block documents <variable-name>.
The directive requires a single argument, the variable name.
Sphinx uses reStructuredText interpreted text roles to provide cross-reference syntax. The CMake Domain provides for each domain object type a role of the same name to cross-reference it. CMake Domain roles are inline markup of the forms:
:type:`name` :type:`text <name>`
where type
is the domain object type and name
is the
domain object name. In the first form the link text will be
name
(or name()
if the type is command
) and in
the second form the link text will be the explicit text
.
For example, the code:
* The :command:`list` command.
* The :command:`list(APPEND)` sub-command.
* The :command:`list() command <list>`.
* The :command:`list(APPEND) sub-command <list>`.
* The :variable:`CMAKE_VERSION` variable.
* The :prop_tgt:`OUTPUT_NAME_<CONFIG>` target property.
produces:
Note that CMake Domain roles differ from Sphinx and reStructuredText
convention in that the form a<b>
, without a space preceding <
,
is interpreted as a name instead of link text with an explicit target.
This is necessary because we use <placeholders>
frequently in
object names like OUTPUT_NAME_<CONFIG>
. The form a <b>
,
with a space preceding <
, is still interpreted as a link text
with an explicit target.
Additionally, the cref
role may be used to create references
to local targets that have literal styling. This is especially
useful for referencing a subcommand in the command's documentation.
When marking section titles, make the section decoration line as long as the title text. Use only a line below the title, not above. For example:
Title Text
----------
Capitalize the first letter of each non-minor word in the title.
The section header underline character hierarchy is
#
: Manual group (part) in the master document*
: Manual (chapter) title=
: Section within a manual-
: Subsection or CMake Domain object document title^
: Subsubsection or CMake Domain object document section"
: Paragraph or CMake Domain object document subsection~
: CMake Domain object document subsubsectionUse two spaces for indentation. Use two spaces between sentences in prose.
Prefer to restrict the width of lines to 75-80 columns. This is not a hard restriction, but writing new paragraphs wrapped at 75 columns allows space for adding minor content without significant re-wrapping of content.
Use American English spellings in prose.
Prefer to mark the start of literal blocks with ::
at the end of
the preceding paragraph. In cases where the following block gets
a code-block
marker, put a single :
at the end of the preceding
paragraph.
A Help/command/<command-name>.rst
document defines one command
object in the CMake Domain, but some commands have multiple signatures.
Use the CMake Domain's signature directive to document each signature.
Separate signatures from preceding content by a section header.
For example:
... preceding paragraph.
Normal Libraries
^^^^^^^^^^^^^^^^
.. signature::
add_library(<lib> ...)
This signature is used for ...
Use the following conventions in command signature documentation:
<placeholder>
for arguments to be specified
by the caller. Refer to them in prose using
inline literal syntax....
).The signature
directive may be used multiple times for different
signatures of the same command.
Use "OFF
" and "ON
" for boolean values which can be modified by
the user, such as POSITION_INDEPENDENT_CODE
. Such properties
may be "enabled" and "disabled". Use "True
" and "False
" for
inherent values which can't be modified after being set, such as the
IMPORTED
property of a build target.
Mark up references to keywords in signatures, file names, and other
technical terms with inline-literal
syntax, for example:
If ``WIN32`` is used with :command:`add_executable`, the
:prop_tgt:`WIN32_EXECUTABLE` target property is enabled. That command
creates the file ``<name>.exe`` on Windows.
Mark up linkable references as links, including repeats. An alternative, which is used by wikipedia (https://en.wikipedia.org/wiki/WP:REPEATLINK), is to link to a reference only once per article. That style is not used in CMake documentation.
If referring to a concept which corresponds to a property, and that concept is described in a high-level manual, prefer to link to the manual section instead of the property. For example:
This command creates an :ref:`Imported Target <Imported Targets>`.
instead of:
This command creates an :prop_tgt:`IMPORTED` target.
The latter should be used only when referring specifically to the property.
References to manual sections are not automatically created by creating a section, but code such as:
.. _`Imported Targets`:
creates a suitable anchor. Use an anchor name which matches the name of the corresponding section. Refer to the anchor using a cross-reference with specified text.
Imported Targets need the IMPORTED
term marked up with care in
particular because the term may refer to a command keyword, a target
property, or a concept.
Where a property, command or variable is related conceptually to others, by for example, being related to the buildsystem description, generator expressions or Qt, each relevant property, command or variable should link to the primary manual, which provides high-level information. Only particular information relating to the command should be in the documentation of the command.
When referring to CMake Domain objects such as properties, variables, commands etc, prefer to link to the target object and follow that with the type of object it is. For example:
Set the :prop_tgt:`AUTOMOC` target property to ``ON``.
Instead of
Set the target property :prop_tgt:`AUTOMOC` to ``ON``.
The policy
directive is an exception, and the type us usually
referred to before the link:
If policy :policy:`CMP0022` is set to ``NEW`` the behavior is ...
However, markup self-references with inline-literal
syntax.
For example, within the add_executable
command documentation, use
``add_executable``
not
:command:`add_executable`
which is used elsewhere.
The Modules
directory contains CMake-language .cmake
module files.
To document CMake module Modules/<module-name>.cmake
, modify
Help/manual/cmake-modules.7.rst
to reference the module in the
toctree
directive, in sorted order, as:
/module/<module-name>
Then add the module document file Help/module/<module-name>.rst
containing just the line:
.. cmake-module:: ../../Modules/<module-name>.cmake
The cmake-module
directive will scan the module file to extract
reStructuredText markup from comment blocks that start in .rst:
.
At the top of Modules/<module-name>.cmake
, begin with the following
license notice:
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file LICENSE.rst or https://cmake.org/licensing for details.
After this notice, add a BLANK line. Then, add documentation using a Bracket Comment of the form:
#[=======================================================================[.rst:
<module-name>
-------------
<reStructuredText documentation of module>
#]=======================================================================]
Any number of =
may be used in the opening and closing brackets
as long as they match. Content on the line containing the closing
bracket is excluded if and only if the line starts in #
.
Additional such .rst:
comments may appear anywhere in the module file.
All such comments must start with #
in the first column.
For example, a FindXxx.cmake
module may contain:
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file LICENSE.rst or https://cmake.org/licensing for details.
#[=======================================================================[.rst:
FindXxx
-------
This is a cool module.
This module does really cool stuff.
It can do even more than you think.
It even needs two paragraphs to tell you about it.
And it defines the following variables:
``VAR_COOL``
this is great isn't it?
``VAR_REALLY_COOL``
cool right?
#]=======================================================================]
<code>
#[=======================================================================[.rst:
.. command:: Xxx_do_something
This command does something for Xxx::
Xxx_do_something(some arguments)
#]=======================================================================]
macro(Xxx_do_something)
<code>
endmacro()
Test the documentation formatting by running
cmake --help-module <module-name>
, and also by enabling the
SPHINX_HTML
and SPHINX_MAN
options to build the documentation.
Edit the comments until generated documentation looks satisfactory. To
have a .cmake file in this directory NOT show up in the modules
documentation, simply leave out the Help/module/<module-name>.rst
file and the Help/manual/cmake-modules.7.rst
toctree entry.
Modules may provide CMake functions and macros defined by the function()
and macro() commands. To avoid conflicts across modules, name the
functions and macros using the prefix <ModuleName>_
followed by the
rest of the name, where <ModuleName>
is the exact-case spelling of
the module name. We have no convention for the portion of names after
the <ModuleName>_
prefix.
For historical reasons, some modules that come with CMake do not follow this prefix convention. When adding new functions to these modules, discussion during review can decide whether to follow their existing convention or to use the module name prefix.
Documentation of public functions and macros should be provided in
the module, typically in the main module documentation at the top.
For example, a MyModule
module may document a function like this:
#[=======================================================================[.rst: MyModule -------- This is my module. It provides some functions. .. command:: MyModule_Some_Function This is some function: .. code-block:: cmake MyModule_Some_Function(...) #]=======================================================================]
Documentation may alternatively be placed just before each definition.
For example, a MyModule
module may document another function like this:
#[=======================================================================[.rst: .. command:: MyModule_Other_Function This is another function: .. code-block:: cmake MyModule_Other_Function(...) #]=======================================================================] function(MyModule_Other_Function ...) # ... endfunction()
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )