diff options
author | Deniz Bahadir <deniz@code.bahadir.email> | 2024-05-22 14:43:33 (GMT) |
---|---|---|
committer | Deniz Bahadir <deniz@code.bahadir.email> | 2024-05-22 14:43:33 (GMT) |
commit | 8a11a39c51c44c21fe6fb3cedd4df0c41450b7f6 (patch) | |
tree | 164d3c66eb13b667981e00e60d2e290e726c061f /Help | |
parent | 50252733c46025d7086d7b0ea6daef04e0c5346f (diff) | |
download | CMake-8a11a39c51c44c21fe6fb3cedd4df0c41450b7f6.zip CMake-8a11a39c51c44c21fe6fb3cedd4df0c41450b7f6.tar.gz CMake-8a11a39c51c44c21fe6fb3cedd4df0c41450b7f6.tar.bz2 |
Help: Use correct programming language names in docs of generator expr.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-generator-expressions.7.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst index bc32452..c3bb044 100644 --- a/Help/manual/cmake-generator-expressions.7.rst +++ b/Help/manual/cmake-generator-expressions.7.rst @@ -967,7 +967,7 @@ closely related to the expressions in this sub-section. .. genex:: $<CXX_COMPILER_VERSION:version> - ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``. + ``1`` if the version of the C++ compiler matches ``version``, otherwise ``0``. .. genex:: $<CUDA_COMPILER_VERSION> @@ -979,31 +979,31 @@ closely related to the expressions in this sub-section. .. versionadded:: 3.15 - ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``. + ``1`` if the version of the C++ compiler matches ``version``, otherwise ``0``. .. genex:: $<OBJC_COMPILER_VERSION> .. versionadded:: 3.16 - The version of the OBJC compiler used. + The version of the Objective-C compiler used. .. genex:: $<OBJC_COMPILER_VERSION:version> .. versionadded:: 3.16 - ``1`` if the version of the OBJC compiler matches ``version``, otherwise ``0``. + ``1`` if the version of the Objective-C compiler matches ``version``, otherwise ``0``. .. genex:: $<OBJCXX_COMPILER_VERSION> .. versionadded:: 3.16 - The version of the OBJCXX compiler used. + The version of the Objective-C++ compiler used. .. genex:: $<OBJCXX_COMPILER_VERSION:version> .. versionadded:: 3.16 - ``1`` if the version of the OBJCXX compiler matches ``version``, otherwise ``0``. + ``1`` if the version of the Objective-C++ compiler matches ``version``, otherwise ``0``. .. genex:: $<Fortran_COMPILER_VERSION> @@ -1059,12 +1059,12 @@ related to most of the expressions in this sub-section. .. genex:: $<CXX_COMPILER_ID> - CMake's compiler id of the CXX compiler used. + CMake's compiler id of the C++ compiler used. .. genex:: $<CXX_COMPILER_ID:compiler_ids> where ``compiler_ids`` is a comma-separated list. - ``1`` if CMake's compiler id of the CXX compiler matches any one + ``1`` if CMake's compiler id of the C++ compiler matches any one of the entries in ``compiler_ids``, otherwise ``0``. .. versionchanged:: 3.15 @@ -1089,7 +1089,7 @@ related to most of the expressions in this sub-section. .. versionadded:: 3.16 - CMake's compiler id of the OBJC compiler used. + CMake's compiler id of the Objective-C compiler used. .. genex:: $<OBJC_COMPILER_ID:compiler_ids> @@ -1103,7 +1103,7 @@ related to most of the expressions in this sub-section. .. versionadded:: 3.16 - CMake's compiler id of the OBJCXX compiler used. + CMake's compiler id of the Objective-C++ compiler used. .. genex:: $<OBJCXX_COMPILER_ID:compiler_ids> |