mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 06:09:52 -06:00
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:
@@ -3,21 +3,20 @@ load_cache
|
||||
|
||||
Load in the values from another project's CMake cache.
|
||||
|
||||
::
|
||||
.. code-block:: cmake
|
||||
|
||||
load_cache(pathToCacheFile READ_WITH_PREFIX
|
||||
prefix entry1...)
|
||||
load_cache(pathToCacheFile READ_WITH_PREFIX prefix entry1...)
|
||||
|
||||
Read the cache and store the requested entries in variables with their
|
||||
Reads the cache and store the requested entries in variables with their
|
||||
name prefixed with the given prefix. This only reads the values, and
|
||||
does not create entries in the local project's cache.
|
||||
|
||||
::
|
||||
.. code-block:: cmake
|
||||
|
||||
load_cache(pathToCacheFile [EXCLUDE entry1...]
|
||||
[INCLUDE_INTERNALS entry1...])
|
||||
|
||||
Load in the values from another cache and store them in the local
|
||||
Loads in the values from another cache and store them in the local
|
||||
project's cache as internal entries. This is useful for a project
|
||||
that depends on another project built in a different tree. ``EXCLUDE``
|
||||
option can be used to provide a list of entries to be excluded.
|
||||
|
||||
Reference in New Issue
Block a user