Просмотр исходного кода

Merge topic 'genex-versionadded'

7993aa3075 Help: Add versionadded tags to cmake-generator-expressions(7)

Acked-by: Kitware Robot <[email protected]>
Merge-request: !6270
Brad King 4 лет назад
Родитель
Сommit
34f879d99e
1 измененных файлов с 105 добавлено и 5 удалено
  1. 105 5
      Help/manual/cmake-generator-expressions.7.rst

+ 105 - 5
Help/manual/cmake-generator-expressions.7.rst

@@ -94,6 +94,8 @@ String Comparisons
 
 
 .. genex:: $<IN_LIST:string,list>
 .. genex:: $<IN_LIST:string,list>
 
 
+  .. versionadded:: 3.12
+
   ``1`` if ``string`` is member of the semicolon-separated ``list``, else ``0``.
   ``1`` if ``string`` is member of the semicolon-separated ``list``, else ``0``.
   Uses case-sensitive comparisons.
   Uses case-sensitive comparisons.
 
 
@@ -111,10 +113,14 @@ String Comparisons
 
 
 .. genex:: $<VERSION_LESS_EQUAL:v1,v2>
 .. genex:: $<VERSION_LESS_EQUAL:v1,v2>
 
 
+  .. versionadded:: 3.7
+
   ``1`` if ``v1`` is a version less than or equal to ``v2``, else ``0``.
   ``1`` if ``v1`` is a version less than or equal to ``v2``, else ``0``.
 
 
 .. genex:: $<VERSION_GREATER_EQUAL:v1,v2>
 .. genex:: $<VERSION_GREATER_EQUAL:v1,v2>
 
 
+  .. versionadded:: 3.7
+
   ``1`` if ``v1`` is a version greater than or equal to ``v2``, else ``0``.
   ``1`` if ``v1`` is a version greater than or equal to ``v2``, else ``0``.
 
 
 Variable Queries
 Variable Queries
@@ -122,6 +128,8 @@ Variable Queries
 
 
 .. genex:: $<TARGET_EXISTS:target>
 .. genex:: $<TARGET_EXISTS:target>
 
 
+  .. versionadded:: 3.12
+
   ``1`` if ``target`` exists, else ``0``.
   ``1`` if ``target`` exists, else ``0``.
 
 
 .. genex:: $<CONFIG:cfgs>
 .. genex:: $<CONFIG:cfgs>
@@ -155,6 +163,8 @@ Variable Queries
 
 
 .. genex:: $<CUDA_COMPILER_ID:compiler_ids>
 .. genex:: $<CUDA_COMPILER_ID:compiler_ids>
 
 
+  .. versionadded:: 3.15
+
   where ``compiler_ids`` is a comma-separated list.
   where ``compiler_ids`` is a comma-separated list.
   ``1`` if the CMake's compiler id of the CUDA compiler matches any one
   ``1`` if the CMake's compiler id of the CUDA compiler matches any one
   of the entries in ``compiler_ids``, otherwise ``0``.
   of the entries in ``compiler_ids``, otherwise ``0``.
@@ -162,6 +172,8 @@ Variable Queries
 
 
 .. genex:: $<OBJC_COMPILER_ID:compiler_ids>
 .. genex:: $<OBJC_COMPILER_ID:compiler_ids>
 
 
+  .. versionadded:: 3.16
+
   where ``compiler_ids`` is a comma-separated list.
   where ``compiler_ids`` is a comma-separated list.
   ``1`` if the CMake's compiler id of the Objective-C compiler matches any one
   ``1`` if the CMake's compiler id of the Objective-C compiler matches any one
   of the entries in ``compiler_ids``, otherwise ``0``.
   of the entries in ``compiler_ids``, otherwise ``0``.
@@ -169,6 +181,8 @@ Variable Queries
 
 
 .. genex:: $<OBJCXX_COMPILER_ID:compiler_ids>
 .. genex:: $<OBJCXX_COMPILER_ID:compiler_ids>
 
 
+  .. versionadded:: 3.16
+
   where ``compiler_ids`` is a comma-separated list.
   where ``compiler_ids`` is a comma-separated list.
   ``1`` if the CMake's compiler id of the Objective-C++ compiler matches any one
   ``1`` if the CMake's compiler id of the Objective-C++ compiler matches any one
   of the entries in ``compiler_ids``, otherwise ``0``.
   of the entries in ``compiler_ids``, otherwise ``0``.
@@ -190,6 +204,8 @@ Variable Queries
 
 
 .. genex:: $<ISPC_COMPILER_ID:compiler_ids>
 .. genex:: $<ISPC_COMPILER_ID:compiler_ids>
 
 
+  .. versionadded:: 3.19
+
   where ``compiler_ids`` is a comma-separated list.
   where ``compiler_ids`` is a comma-separated list.
   ``1`` if the CMake's compiler id of the ISPC compiler matches any one
   ``1`` if the CMake's compiler id of the ISPC compiler matches any one
   of the entries in ``compiler_ids``, otherwise ``0``.
   of the entries in ``compiler_ids``, otherwise ``0``.
@@ -207,16 +223,22 @@ Variable Queries
 
 
 .. genex:: $<CUDA_COMPILER_VERSION:version>
 .. genex:: $<CUDA_COMPILER_VERSION:version>
 
 
+  .. versionadded:: 3.15
+
   ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``.
   ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
 
 
 .. genex:: $<OBJC_COMPILER_VERSION:version>
 .. 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 OBJC compiler matches ``version``, otherwise ``0``.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
 
 
 .. genex:: $<OBJCXX_COMPILER_VERSION:version>
 .. 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 OBJCXX compiler matches ``version``, otherwise ``0``.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
 
 
@@ -232,6 +254,8 @@ Variable Queries
 
 
 .. genex:: $<ISPC_COMPILER_VERSION:version>
 .. genex:: $<ISPC_COMPILER_VERSION:version>
 
 
+  .. versionadded:: 3.19
+
   ``1`` if the version of the ISPC compiler matches ``version``, otherwise ``0``.
   ``1`` if the version of the ISPC compiler matches ``version``, otherwise ``0``.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
 
 
@@ -244,6 +268,8 @@ Variable Queries
 
 
 .. genex:: $<COMPILE_FEATURES:features>
 .. genex:: $<COMPILE_FEATURES:features>
 
 
+  .. versionadded:: 3.1
+
   where ``features`` is a comma-spearated list.
   where ``features`` is a comma-spearated list.
   Evaluates to ``1`` if all of the ``features`` are available for the 'head'
   Evaluates to ``1`` if all of the ``features`` are available for the 'head'
   target, and ``0`` otherwise. If this expression is used while evaluating
   target, and ``0`` otherwise. If this expression is used while evaluating
@@ -257,6 +283,8 @@ Variable Queries
 
 
 .. genex:: $<COMPILE_LANG_AND_ID:language,compiler_ids>
 .. genex:: $<COMPILE_LANG_AND_ID:language,compiler_ids>
 
 
+  .. versionadded:: 3.15
+
   ``1`` when the language used for compilation unit matches ``language`` and
   ``1`` when the language used for compilation unit matches ``language`` and
   the CMake's compiler id of the language compiler matches any one of the
   the CMake's compiler id of the language compiler matches any one of the
   entries in ``compiler_ids``, otherwise ``0``. This expression is a short form
   entries in ``compiler_ids``, otherwise ``0``. This expression is a short form
@@ -294,6 +322,8 @@ Variable Queries
 
 
 .. genex:: $<COMPILE_LANGUAGE:languages>
 .. genex:: $<COMPILE_LANGUAGE:languages>
 
 
+  .. versionadded:: 3.3
+
   ``1`` when the language used for compilation unit matches any of the entries
   ``1`` when the language used for compilation unit matches any of the entries
   in ``languages``, otherwise ``0``.  This expression may be used to specify
   in ``languages``, otherwise ``0``.  This expression may be used to specify
   compile options, compile definitions, and include directories for source files of a
   compile options, compile definitions, and include directories for source files of a
@@ -340,6 +370,8 @@ Variable Queries
 
 
 .. genex:: $<LINK_LANG_AND_ID:language,compiler_ids>
 .. genex:: $<LINK_LANG_AND_ID:language,compiler_ids>
 
 
+  .. versionadded:: 3.18
+
   ``1`` when the language used for link step matches ``language`` and the
   ``1`` when the language used for link step matches ``language`` and the
   CMake's compiler id of the language linker matches any one of the entries
   CMake's compiler id of the language linker matches any one of the entries
   in ``compiler_ids``, otherwise ``0``. This expression is a short form for the
   in ``compiler_ids``, otherwise ``0``. This expression is a short form for the
@@ -380,6 +412,8 @@ Variable Queries
 
 
 .. genex:: $<LINK_LANGUAGE:languages>
 .. genex:: $<LINK_LANGUAGE:languages>
 
 
+  .. versionadded:: 3.18
+
   ``1`` when the language used for link step matches any of the entries
   ``1`` when the language used for link step matches any of the entries
   in ``languages``, otherwise ``0``.  This expression may be used to specify
   in ``languages``, otherwise ``0``.  This expression may be used to specify
   link libraries, link options, link directories and link dependencies of a
   link libraries, link options, link directories and link dependencies of a
@@ -443,6 +477,8 @@ Variable Queries
 
 
 .. genex:: $<DEVICE_LINK:list>
 .. genex:: $<DEVICE_LINK:list>
 
 
+  .. versionadded:: 3.18
+
   Returns the list if it is the device link step, an empty list otherwise.
   Returns the list if it is the device link step, an empty list otherwise.
   The device link step is controlled by :prop_tgt:`CUDA_SEPARABLE_COMPILATION`
   The device link step is controlled by :prop_tgt:`CUDA_SEPARABLE_COMPILATION`
   and :prop_tgt:`CUDA_RESOLVE_DEVICE_SYMBOLS` properties and
   and :prop_tgt:`CUDA_RESOLVE_DEVICE_SYMBOLS` properties and
@@ -451,6 +487,8 @@ Variable Queries
 
 
 .. genex:: $<HOST_LINK:list>
 .. genex:: $<HOST_LINK:list>
 
 
+  .. versionadded:: 3.18
+
   Returns the list if it is the normal link step, an empty list otherwise.
   Returns the list if it is the normal link step, an empty list otherwise.
   This expression is mainly useful when a device link step is also involved
   This expression is mainly useful when a device link step is also involved
   (see ``$<DEVICE_LINK:list>`` generator expression). This expression can only
   (see ``$<DEVICE_LINK:list>`` generator expression). This expression can only
@@ -533,6 +571,8 @@ that must be ``0`` or ``1``.
 
 
 .. genex:: $<IF:condition,true_string,false_string>
 .. genex:: $<IF:condition,true_string,false_string>
 
 
+  .. versionadded:: 3.8
+
   Evaluates to ``true_string`` if ``condition`` is ``1``.
   Evaluates to ``true_string`` if ``condition`` is ``1``.
   Otherwise evaluates to ``false_string``.
   Otherwise evaluates to ``false_string``.
 
 
@@ -557,10 +597,14 @@ String Transformations
 
 
 .. genex:: $<REMOVE_DUPLICATES:list>
 .. genex:: $<REMOVE_DUPLICATES:list>
 
 
+  .. versionadded:: 3.15
+
   Removes duplicated items in the given ``list``.
   Removes duplicated items in the given ``list``.
 
 
 .. genex:: $<FILTER:list,INCLUDE|EXCLUDE,regex>
 .. genex:: $<FILTER:list,INCLUDE|EXCLUDE,regex>
 
 
+  .. versionadded:: 3.15
+
   Includes or removes items from ``list`` that match the regular expression ``regex``.
   Includes or removes items from ``list`` that match the regular expression ``regex``.
 
 
 .. genex:: $<LOWER_CASE:string>
 .. genex:: $<LOWER_CASE:string>
@@ -573,12 +617,16 @@ String Transformations
 
 
 .. genex:: $<GENEX_EVAL:expr>
 .. genex:: $<GENEX_EVAL:expr>
 
 
+  .. versionadded:: 3.12
+
   Content of ``expr`` evaluated as a generator expression in the current
   Content of ``expr`` evaluated as a generator expression in the current
   context. This enables consumption of generator expressions whose
   context. This enables consumption of generator expressions whose
   evaluation results itself in generator expressions.
   evaluation results itself in generator expressions.
 
 
 .. genex:: $<TARGET_GENEX_EVAL:tgt,expr>
 .. genex:: $<TARGET_GENEX_EVAL:tgt,expr>
 
 
+  .. versionadded:: 3.12
+
   Content of ``expr`` evaluated as a generator expression in the context of
   Content of ``expr`` evaluated as a generator expression in the context of
   ``tgt`` target. This enables consumption of custom target properties that
   ``tgt`` target. This enables consumption of custom target properties that
   themselves contain generator expressions.
   themselves contain generator expressions.
@@ -647,11 +695,15 @@ Variable Queries
 
 
 .. genex:: $<OBJC_COMPILER_ID>
 .. genex:: $<OBJC_COMPILER_ID>
 
 
+  .. versionadded:: 3.16
+
   The CMake's compiler id of the OBJC compiler used.
   The CMake's compiler id of the OBJC compiler used.
   See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
 
 
 .. genex:: $<OBJCXX_COMPILER_ID>
 .. genex:: $<OBJCXX_COMPILER_ID>
 
 
+  .. versionadded:: 3.16
+
   The CMake's compiler id of the OBJCXX compiler used.
   The CMake's compiler id of the OBJCXX compiler used.
   See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
 
 
@@ -667,6 +719,8 @@ Variable Queries
 
 
 .. genex:: $<ISPC_COMPILER_ID>
 .. genex:: $<ISPC_COMPILER_ID>
 
 
+  .. versionadded:: 3.19
+
   The CMake's compiler id of the ISPC compiler used.
   The CMake's compiler id of the ISPC compiler used.
   See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
 
 
@@ -687,11 +741,15 @@ Variable Queries
 
 
 .. genex:: $<OBJC_COMPILER_VERSION>
 .. genex:: $<OBJC_COMPILER_VERSION>
 
 
+  .. versionadded:: 3.16
+
   The version of the OBJC compiler used.
   The version of the OBJC compiler used.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
 
 
 .. genex:: $<OBJCXX_COMPILER_VERSION>
 .. genex:: $<OBJCXX_COMPILER_VERSION>
 
 
+  .. versionadded:: 3.16
+
   The version of the OBJCXX compiler used.
   The version of the OBJCXX compiler used.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
 
 
@@ -707,11 +765,15 @@ Variable Queries
 
 
 .. genex:: $<ISPC_COMPILER_VERSION>
 .. genex:: $<ISPC_COMPILER_VERSION>
 
 
+  .. versionadded:: 3.19
+
   The version of the ISPC compiler used.
   The version of the ISPC compiler used.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
   See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
 
 
 .. genex:: $<COMPILE_LANGUAGE>
 .. genex:: $<COMPILE_LANGUAGE>
 
 
+  .. versionadded:: 3.3
+
   The compile language of source files when evaluating compile options.
   The compile language of source files when evaluating compile options.
   See :ref:`the related boolean expression
   See :ref:`the related boolean expression
   <Boolean COMPILE_LANGUAGE Generator Expression>`
   <Boolean COMPILE_LANGUAGE Generator Expression>`
@@ -720,6 +782,8 @@ Variable Queries
 
 
 .. genex:: $<LINK_LANGUAGE>
 .. genex:: $<LINK_LANGUAGE>
 
 
+  .. versionadded:: 3.18
+
   The link language of target when evaluating link options.
   The link language of target when evaluating link options.
   See :ref:`the related boolean expression
   See :ref:`the related boolean expression
   <Boolean LINK_LANGUAGE Generator Expression>` ``$<LINK_LANGUAGE:language>``
   <Boolean LINK_LANGUAGE Generator Expression>` ``$<LINK_LANGUAGE:language>``
@@ -750,6 +814,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_NAME_IF_EXISTS:tgt>
 .. genex:: $<TARGET_NAME_IF_EXISTS:tgt>
 
 
+  .. versionadded:: 3.12
+
   The target name ``tgt`` if the target exists, an empty string otherwise.
   The target name ``tgt`` if the target exists, an empty string otherwise.
 
 
   Note that ``tgt`` is not added as a dependency of the target this
   Note that ``tgt`` is not added as a dependency of the target this
@@ -761,6 +827,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_FILE_BASE_NAME:tgt>
 .. genex:: $<TARGET_FILE_BASE_NAME:tgt>
 
 
+  .. versionadded:: 3.15
+
   Base name of ``tgt``, i.e. ``$<TARGET_FILE_NAME:tgt>`` without prefix and
   Base name of ``tgt``, i.e. ``$<TARGET_FILE_NAME:tgt>`` without prefix and
   suffix.
   suffix.
   For example, if the ``tgt`` filename is ``libbase.so``, the base name is ``base``.
   For example, if the ``tgt`` filename is ``libbase.so``, the base name is ``base``.
@@ -780,6 +848,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_FILE_PREFIX:tgt>
 .. genex:: $<TARGET_FILE_PREFIX:tgt>
 
 
+  .. versionadded:: 3.15
+
   Prefix of the ``tgt`` filename (such as ``lib``).
   Prefix of the ``tgt`` filename (such as ``lib``).
 
 
   See also the :prop_tgt:`PREFIX` target property.
   See also the :prop_tgt:`PREFIX` target property.
@@ -789,6 +859,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_FILE_SUFFIX:tgt>
 .. genex:: $<TARGET_FILE_SUFFIX:tgt>
 
 
+  .. versionadded:: 3.15
+
   Suffix of the ``tgt`` filename (extension such as ``.so`` or ``.exe``).
   Suffix of the ``tgt`` filename (extension such as ``.so`` or ``.exe``).
 
 
   See also the :prop_tgt:`SUFFIX` target property.
   See also the :prop_tgt:`SUFFIX` target property.
@@ -819,6 +891,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_LINKER_FILE_BASE_NAME:tgt>
 .. genex:: $<TARGET_LINKER_FILE_BASE_NAME:tgt>
 
 
+  .. versionadded:: 3.15
+
   Base name of file used to link the target ``tgt``, i.e.
   Base name of file used to link the target ``tgt``, i.e.
   ``$<TARGET_LINKER_FILE_NAME:tgt>`` without prefix and suffix. For example,
   ``$<TARGET_LINKER_FILE_NAME:tgt>`` without prefix and suffix. For example,
   if target file name is ``libbase.a``, the base name is ``base``.
   if target file name is ``libbase.a``, the base name is ``base``.
@@ -837,6 +911,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_LINKER_FILE_PREFIX:tgt>
 .. genex:: $<TARGET_LINKER_FILE_PREFIX:tgt>
 
 
+  .. versionadded:: 3.15
+
   Prefix of file used to link target ``tgt``.
   Prefix of file used to link target ``tgt``.
 
 
   See also the :prop_tgt:`PREFIX` and :prop_tgt:`IMPORT_PREFIX` target
   See also the :prop_tgt:`PREFIX` and :prop_tgt:`IMPORT_PREFIX` target
@@ -847,6 +923,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_LINKER_FILE_SUFFIX:tgt>
 .. genex:: $<TARGET_LINKER_FILE_SUFFIX:tgt>
 
 
+  .. versionadded:: 3.15
+
   Suffix of file used to link where ``tgt`` is the name of a target.
   Suffix of file used to link where ``tgt`` is the name of a target.
 
 
   The suffix corresponds to the file extension (such as ".so" or ".lib").
   The suffix corresponds to the file extension (such as ".so" or ".lib").
@@ -890,6 +968,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_PDB_FILE:tgt>
 .. genex:: $<TARGET_PDB_FILE:tgt>
 
 
+  .. versionadded:: 3.1
+
   Full path to the linker generated program database file (.pdb)
   Full path to the linker generated program database file (.pdb)
   where ``tgt`` is the name of a target.
   where ``tgt`` is the name of a target.
 
 
@@ -899,6 +979,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_PDB_FILE_BASE_NAME:tgt>
 .. genex:: $<TARGET_PDB_FILE_BASE_NAME:tgt>
 
 
+  .. versionadded:: 3.15
+
   Base name of the linker generated program database file (.pdb)
   Base name of the linker generated program database file (.pdb)
   where ``tgt`` is the name of a target.
   where ``tgt`` is the name of a target.
 
 
@@ -917,6 +999,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_PDB_FILE_NAME:tgt>
 .. genex:: $<TARGET_PDB_FILE_NAME:tgt>
 
 
+  .. versionadded:: 3.1
+
   Name of the linker generated program database file (.pdb).
   Name of the linker generated program database file (.pdb).
 
 
   Note that ``tgt`` is not added as a dependency of the target this
   Note that ``tgt`` is not added as a dependency of the target this
@@ -924,6 +1008,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_PDB_FILE_DIR:tgt>
 .. genex:: $<TARGET_PDB_FILE_DIR:tgt>
 
 
+  .. versionadded:: 3.1
+
   Directory of the linker generated program database file (.pdb).
   Directory of the linker generated program database file (.pdb).
 
 
   Note that ``tgt`` is not added as a dependency of the target this
   Note that ``tgt`` is not added as a dependency of the target this
@@ -931,6 +1017,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_BUNDLE_DIR:tgt>
 .. genex:: $<TARGET_BUNDLE_DIR:tgt>
 
 
+  .. versionadded:: 3.9
+
   Full path to the bundle directory (``my.app``, ``my.framework``, or
   Full path to the bundle directory (``my.app``, ``my.framework``, or
   ``my.bundle``) where ``tgt`` is the name of a target.
   ``my.bundle``) where ``tgt`` is the name of a target.
 
 
@@ -939,6 +1027,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_BUNDLE_CONTENT_DIR:tgt>
 .. genex:: $<TARGET_BUNDLE_CONTENT_DIR:tgt>
 
 
+  .. versionadded:: 3.9
+
   Full path to the bundle content directory where ``tgt`` is the name of a
   Full path to the bundle content directory where ``tgt`` is the name of a
   target. For the macOS SDK it leads to ``my.app/Contents``, ``my.framework``,
   target. For the macOS SDK it leads to ``my.app/Contents``, ``my.framework``,
   or ``my.bundle/Contents``. For all other SDKs (e.g. iOS) it leads to
   or ``my.bundle/Contents``. For all other SDKs (e.g. iOS) it leads to
@@ -964,6 +1054,8 @@ which is just the string ``tgt``.
 
 
 .. genex:: $<TARGET_RUNTIME_DLLS:tgt>
 .. genex:: $<TARGET_RUNTIME_DLLS:tgt>
 
 
+  .. versionadded:: 3.21
+
   List of DLLs that the target depends on at runtime. This is determined by
   List of DLLs that the target depends on at runtime. This is determined by
   the locations of all the ``SHARED`` and ``MODULE`` targets in the target's
   the locations of all the ``SHARED`` and ``MODULE`` targets in the target's
   transitive dependencies. Using this generator expression on targets other
   transitive dependencies. Using this generator expression on targets other
@@ -1003,6 +1095,8 @@ Output-Related Expressions
 
 
 .. genex:: $<LINK_ONLY:...>
 .. genex:: $<LINK_ONLY:...>
 
 
+  .. versionadded:: 3.1
+
   Content of ``...`` except when evaluated in a link interface while
   Content of ``...`` except when evaluated in a link interface while
   propagating :ref:`Target Usage Requirements`, in which case it is the
   propagating :ref:`Target Usage Requirements`, in which case it is the
   empty string.
   empty string.
@@ -1028,18 +1122,24 @@ Output-Related Expressions
 
 
 .. genex:: $<TARGET_OBJECTS:objLib>
 .. genex:: $<TARGET_OBJECTS:objLib>
 
 
+  .. versionadded:: 3.1
+
   List of objects resulting from build of ``objLib``.
   List of objects resulting from build of ``objLib``.
 
 
 .. genex:: $<SHELL_PATH:...>
 .. genex:: $<SHELL_PATH:...>
 
 
+  .. versionadded:: 3.4
+
   Content of ``...`` converted to shell path style. For example, slashes are
   Content of ``...`` converted to shell path style. For example, slashes are
   converted to backslashes in Windows shells and drive letters are converted
   converted to backslashes in Windows shells and drive letters are converted
   to posix paths in MSYS shells. The ``...`` must be an absolute path.
   to posix paths in MSYS shells. The ``...`` must be an absolute path.
-  The ``...`` may be a :ref:`semicolon-separated list <CMake Language Lists>`
-  of paths, in which case each path is converted individually and a result
-  list is generated using the shell path separator (``:`` on POSIX and
-  ``;`` on Windows).  Be sure to enclose the argument containing this genex
-  in double quotes in CMake source code so that ``;`` does not split arguments.
+
+  .. versionadded:: 3.14
+    The ``...`` may be a :ref:`semicolon-separated list <CMake Language Lists>`
+    of paths, in which case each path is converted individually and a result
+    list is generated using the shell path separator (``:`` on POSIX and
+    ``;`` on Windows).  Be sure to enclose the argument containing this genex
+    in double quotes in CMake source code so that ``;`` does not split arguments.
 
 
 .. genex:: $<OUTPUT_CONFIG:...>
 .. genex:: $<OUTPUT_CONFIG:...>