summaryrefslogtreecommitdiffstats
path: root/Help/command
diff options
context:
space:
mode:
authorJuan Ramos <juan.ramos@kitware.com>2024-03-28 05:16:22 (GMT)
committerJuan Ramos <juan.ramos@kitware.com>2024-03-28 16:48:08 (GMT)
commit89aac1fbe8b46856f1a8cfdb0f59953643f1bf83 (patch)
tree3df6698a122b9e3c1be327298d6db39f9f76517a /Help/command
parent2e3692bde08c071fdb00f201eaa6dc0116de436b (diff)
downloadCMake-89aac1fbe8b46856f1a8cfdb0f59953643f1bf83.zip
CMake-89aac1fbe8b46856f1a8cfdb0f59953643f1bf83.tar.gz
CMake-89aac1fbe8b46856f1a8cfdb0f59953643f1bf83.tar.bz2
add_dependencies: Document behavior under Ninja generators
Closes: #25796
Diffstat (limited to 'Help/command')
-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
^^^^^^^^