summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-03-29 13:13:55 (GMT)
committerKitware Robot <kwrobot@kitware.com>2024-03-29 13:14:12 (GMT)
commit04c3734a8a0756dfd76109c9eef92875578a60c5 (patch)
tree8210a86ea15a3a972fcb63f3c0f819b418f96e84 /Help
parent293729a4414886b0a449c164ad850b10da21ab1b (diff)
parent89aac1fbe8b46856f1a8cfdb0f59953643f1bf83 (diff)
downloadCMake-04c3734a8a0756dfd76109c9eef92875578a60c5.zip
CMake-04c3734a8a0756dfd76109c9eef92875578a60c5.tar.gz
CMake-04c3734a8a0756dfd76109c9eef92875578a60c5.tar.bz2
Merge topic 'add_custom_command/25796'
89aac1fbe8 add_dependencies: Document behavior under Ninja generators Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9378
Diffstat (limited to 'Help')
-rw-r--r--Help/command/add_dependencies.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Help/command/add_dependencies.rst b/Help/command/add_dependencies.rst
index 23cb405..7ff9ac1 100644
--- a/Help/command/add_dependencies.rst
+++ b/Help/command/add_dependencies.rst
@@ -20,6 +20,13 @@ transitively in its place since the target itself does not build.
.. versionadded:: 3.3
Allow adding dependencies to interface libraries.
+.. versionchanged:: 3.9
+ The :ref:`Ninja Generators` use weaker ordering than
+ other generators in order to improve available concurrency.
+ They only guarantee that the dependencies' custom commands are
+ finished before sources in ``<target>`` start compiling; this
+ ensures generated sources are available.
+
See Also
^^^^^^^^