Help: Apply syntax highlighting to project commands

* Replace most "::" by ".. code-block:: cmake"
  * Header sentence in imperative voice,
    detailed command description in present tense.
This commit is contained in:
Joachim Wuttke (o)
2018-10-25 13:34:27 +02:00
parent 2459b5e832
commit adbaadf0ee
45 changed files with 108 additions and 103 deletions

View File

@@ -3,12 +3,12 @@ enable_language
Enable a language (CXX/C/Fortran/etc)
::
.. code-block:: cmake
enable_language(<lang> [OPTIONAL] )
This command enables support for the named language in CMake. This is
the same as the project command but does not create any of the extra
Enables support for the named language in CMake. This is
the same as the :command:`project` command but does not create any of the extra
variables that are created by the project command. Example languages
are ``CXX``, ``C``, ``CUDA``, ``Fortran``, and ``ASM``.