diff options
author | Craig Scott <craig.scott@crascit.com> | 2022-12-17 09:49:43 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-12-17 09:50:00 (GMT) |
commit | db6da7470aad2784a63cdf5ca58dd0698ead2056 (patch) | |
tree | fbb467fdfda998660f7fa49cc8752fbf5b0ff4ce /Help/command | |
parent | 6755178d248929a3cc504c98bc337cc5b85eaf73 (diff) | |
parent | 2ee845c0a51d4cb07e090888f304aea6b1795793 (diff) | |
download | CMake-db6da7470aad2784a63cdf5ca58dd0698ead2056.zip CMake-db6da7470aad2784a63cdf5ca58dd0698ead2056.tar.gz CMake-db6da7470aad2784a63cdf5ca58dd0698ead2056.tar.bz2 |
Merge topic 'doc-updates'
2ee845c0a5 Help: Add version information for SYSTEM option of add_subdirectory
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !8025
Diffstat (limited to 'Help/command')
-rw-r--r-- | Help/command/add_subdirectory.rst | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Help/command/add_subdirectory.rst b/Help/command/add_subdirectory.rst index 8640eeb..fe17b56 100644 --- a/Help/command/add_subdirectory.rst +++ b/Help/command/add_subdirectory.rst @@ -34,9 +34,10 @@ parent project depends on a target in the subdirectory, the dependee target will be included in the parent project build system to satisfy the dependency. -If the ``SYSTEM`` argument is provided, the :prop_dir:`SYSTEM` directory -property of the subdirectory will be set to true. This property is -used to initialize the :prop_tgt:`SYSTEM` property of each non-imported -target created in that subdirectory. The include directories of targets -with :prop_tgt:`SYSTEM` set to true will be treated as ``SYSTEM`` when -compiling consumers. +.. versionadded:: 3.25 + If the ``SYSTEM`` argument is provided, the :prop_dir:`SYSTEM` directory + property of the subdirectory will be set to true. This property is + used to initialize the :prop_tgt:`SYSTEM` property of each non-imported + target created in that subdirectory. The include directories of targets + with :prop_tgt:`SYSTEM` set to true will be treated as ``SYSTEM`` when + compiling consumers. |