diff options
Diffstat (limited to 'Help/command')
-rw-r--r-- | Help/command/add_custom_command.rst | 2 | ||||
-rw-r--r-- | Help/command/list.rst | 6 | ||||
-rw-r--r-- | Help/command/target_precompile_headers.rst | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/Help/command/add_custom_command.rst b/Help/command/add_custom_command.rst index f1be309..aa232cb 100644 --- a/Help/command/add_custom_command.rst +++ b/Help/command/add_custom_command.rst @@ -512,7 +512,7 @@ one of the keywords to make clear the behavior they expect. Because generator expressions can be used in custom commands, it is possible to define ``COMMAND`` lines or whole custom commands which evaluate to empty strings for certain configurations. - For **Visual Studio 11 2012 (and newer)** generators these command + For **Visual Studio 12 2013 (and newer)** generators these command lines or custom commands will be omitted for the specific configuration and no "empty-string-command" will be added. diff --git a/Help/command/list.rst b/Help/command/list.rst index 0c7a562..47d96a7 100644 --- a/Help/command/list.rst +++ b/Help/command/list.rst @@ -1,7 +1,7 @@ list ---- -List operations. +Operations on :ref:`semicolon-separated lists <CMake Language Lists>`. Synopsis ^^^^^^^^ @@ -56,6 +56,10 @@ propagation. (Note that macro arguments are not variables, and therefore cannot be used in ``LIST`` commands.) + Individual elements may not contain an unequal number of ``[`` and ``]`` + characters, and may not end in a backslash (``\``). + See :ref:`semicolon-separated lists <CMake Language Lists>` for details. + .. note:: When specifying index values, if ``<element index>`` is 0 or greater, it diff --git a/Help/command/target_precompile_headers.rst b/Help/command/target_precompile_headers.rst index 8e5c0e9..c795713 100644 --- a/Help/command/target_precompile_headers.rst +++ b/Help/command/target_precompile_headers.rst @@ -70,7 +70,7 @@ included by absolute path. For example: <unordered_map> ) -.. |command_name| replace:: ``target_compile_features`` +.. |command_name| replace:: ``target_precompile_headers`` .. |more_see_also| replace:: The :genex:`$<COMPILE_LANGUAGE:...>` generator expression is particularly useful for specifying a language-specific header to precompile for only one language (e.g. ``CXX`` and not ``C``). In this |