diff options
-rw-r--r-- | Help/manual/cmake-generator-expressions.7.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Help/manual/cmake-generator-expressions.7.rst b/Help/manual/cmake-generator-expressions.7.rst index d0f708a..a6d2a05 100644 --- a/Help/manual/cmake-generator-expressions.7.rst +++ b/Help/manual/cmake-generator-expressions.7.rst @@ -197,6 +197,8 @@ Variable Queries .. genex:: $<HIP_COMPILER_ID:compiler_ids> + .. versionadded:: 3.21 + where ``compiler_ids`` is a comma-separated list. ``1`` if the CMake's compiler id of the HIP compiler matches any one of the entries in ``compiler_ids``, otherwise ``0``. @@ -249,6 +251,8 @@ Variable Queries .. genex:: $<HIP_COMPILER_VERSION:version> + .. versionadded:: 3.21 + ``1`` if the version of the HIP compiler matches ``version``, otherwise ``0``. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable. @@ -714,6 +718,8 @@ Variable Queries .. genex:: $<HIP_COMPILER_ID> + .. versionadded:: 3.21 + The CMake's compiler id of the HIP compiler used. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable. @@ -760,6 +766,8 @@ Variable Queries .. genex:: $<HIP_COMPILER_VERSION> + .. versionadded:: 3.21 + The version of the HIP compiler used. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable. |