diff options
author | Craig Scott <craig.scott@crascit.com> | 2022-10-08 09:10:41 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2022-10-09 02:34:05 (GMT) |
commit | f8b3b24915163ab4de94c13bdeb7a314597fb030 (patch) | |
tree | 75ebf03dfd1aff7818db9c842c0f1110a84e2a40 /Help/prop_tgt | |
parent | 3de30134f1432e877bbf133bcb18797c09801209 (diff) | |
download | CMake-f8b3b24915163ab4de94c13bdeb7a314597fb030.zip CMake-f8b3b24915163ab4de94c13bdeb7a314597fb030.tar.gz CMake-f8b3b24915163ab4de94c13bdeb7a314597fb030.tar.bz2 |
Help: Minor grammar, typo and formatting cleanups
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r-- | Help/prop_tgt/COMPILE_WARNING_AS_ERROR.rst | 3 | ||||
-rw-r--r-- | Help/prop_tgt/CXX_MODULE_HEADER_UNIT_DIRS.rst | 4 | ||||
-rw-r--r-- | Help/prop_tgt/CXX_MODULE_SETS.rst | 4 | ||||
-rw-r--r-- | Help/prop_tgt/EXPORT_NO_SYSTEM.rst | 6 | ||||
-rw-r--r-- | Help/prop_tgt/LANG_CLANG_TIDY.rst | 2 | ||||
-rw-r--r-- | Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT-VALUES.txt | 4 | ||||
-rw-r--r-- | Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.rst | 2 |
7 files changed, 13 insertions, 12 deletions
diff --git a/Help/prop_tgt/COMPILE_WARNING_AS_ERROR.rst b/Help/prop_tgt/COMPILE_WARNING_AS_ERROR.rst index 684b9dd..32ed6d0 100644 --- a/Help/prop_tgt/COMPILE_WARNING_AS_ERROR.rst +++ b/Help/prop_tgt/COMPILE_WARNING_AS_ERROR.rst @@ -32,4 +32,5 @@ implemented :variable:`compiler IDs <CMAKE_<LANG>_COMPILER_ID>` are: * ``XLClang`` This property is initialized by the value of the variable -:variable:`CMAKE_COMPILE_WARNING_AS_ERROR` if it is set when a target is created. +:variable:`CMAKE_COMPILE_WARNING_AS_ERROR` if it is set when a target is +created. diff --git a/Help/prop_tgt/CXX_MODULE_HEADER_UNIT_DIRS.rst b/Help/prop_tgt/CXX_MODULE_HEADER_UNIT_DIRS.rst index 17e5cf0..d5aa2ab 100644 --- a/Help/prop_tgt/CXX_MODULE_HEADER_UNIT_DIRS.rst +++ b/Help/prop_tgt/CXX_MODULE_HEADER_UNIT_DIRS.rst @@ -13,5 +13,5 @@ module header set (i.e. the file set with name and type This property is normally only set by :command:`target_sources(FILE_SET)` rather than being manipulated directly. -See :prop_tgt:`CXX_MODULE_HEADER_UNIT_DIRS_<NAME>` for the list of base directories -in other C++ module header sets. +See :prop_tgt:`CXX_MODULE_HEADER_UNIT_DIRS_<NAME>` for the list of base +directories in other C++ module header sets. diff --git a/Help/prop_tgt/CXX_MODULE_SETS.rst b/Help/prop_tgt/CXX_MODULE_SETS.rst index c03df39..c053278 100644 --- a/Help/prop_tgt/CXX_MODULE_SETS.rst +++ b/Help/prop_tgt/CXX_MODULE_SETS.rst @@ -6,8 +6,8 @@ CXX_MODULE_SETS Experimental. Gated by ``CMAKE_EXPERIMENTAL_CXX_MODULE_CMAKE_API`` Read-only list of the target's ``PRIVATE`` and ``PUBLIC`` C++ module sets (i.e. -all file sets with the type ``CXX_MODULES``). Files listed in these file sets are -treated as source files for the purpose of IDE integration. +all file sets with the type ``CXX_MODULES``). Files listed in these file sets +are treated as source files for the purpose of IDE integration. C++ module sets may be defined using the :command:`target_sources` command ``FILE_SET`` option with type ``CXX_MODULES``. diff --git a/Help/prop_tgt/EXPORT_NO_SYSTEM.rst b/Help/prop_tgt/EXPORT_NO_SYSTEM.rst index c93d1a5..61f0a8d 100644 --- a/Help/prop_tgt/EXPORT_NO_SYSTEM.rst +++ b/Help/prop_tgt/EXPORT_NO_SYSTEM.rst @@ -4,8 +4,8 @@ EXPORT_NO_SYSTEM .. versionadded:: 3.25 Specifies that :command:`install(EXPORT)` and :command:`export` commands will -generate a imported target with :prop_tgt:`SYSTEM` property `OFF`. +generate an imported target with :prop_tgt:`SYSTEM` property `OFF`. See the :prop_tgt:`NO_SYSTEM_FROM_IMPORTED` target property to set this -behavior on the target consuming the include directories rather than -providing them. +behavior on the target *consuming* the include directories rather than the +one *providing* them. diff --git a/Help/prop_tgt/LANG_CLANG_TIDY.rst b/Help/prop_tgt/LANG_CLANG_TIDY.rst index ffa0b9a..31f1876 100644 --- a/Help/prop_tgt/LANG_CLANG_TIDY.rst +++ b/Help/prop_tgt/LANG_CLANG_TIDY.rst @@ -18,7 +18,7 @@ command line. .. versionchanged:: 3.25 If the specified ``clang-tidy`` command line includes the ``-p`` option, - it will invoked without ``--`` and the full compiler command line. + it will be invoked without ``--`` and the full compiler command line. ``clang-tidy`` will look up the source file in the specified compiler commands database. diff --git a/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT-VALUES.txt b/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT-VALUES.txt index 9a68460..889d97a 100644 --- a/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT-VALUES.txt +++ b/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT-VALUES.txt @@ -8,8 +8,8 @@ Compile with ``-ZI`` or equivalent flag(s) to produce a program database that supports the Edit and Continue feature. -The value is ignored on non-MSVC compilers but an unsupported value will +The value is ignored on non-MSVC compilers, but an unsupported value will be rejected as an error when using a compiler targeting the MSVC ABI. -The value may also be the empty string (``""``) in which case no debug +The value may also be the empty string (``""``), in which case no debug information format flag will be added explicitly by CMake. diff --git a/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.rst b/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.rst index 2314cff..0c7845c 100644 --- a/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.rst +++ b/Help/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.rst @@ -3,7 +3,7 @@ MSVC_DEBUG_INFORMATION_FORMAT .. versionadded:: 3.25 -Select debug information format targeting the MSVC ABI. +Select debug information format when targeting the MSVC ABI. The allowed values are: |