diff options
author | Brad King <brad.king@kitware.com> | 2015-03-27 20:25:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-03-27 20:25:09 (GMT) |
commit | ac14cbf01710c08e9bf31670cf40d88512b55752 (patch) | |
tree | d6df138d63017c30c18b9b244d79d5f926bff120 /Help | |
parent | 817d31db9797bfc1c6ff7e60e420532362b14463 (diff) | |
download | CMake-ac14cbf01710c08e9bf31670cf40d88512b55752.zip CMake-ac14cbf01710c08e9bf31670cf40d88512b55752.tar.gz CMake-ac14cbf01710c08e9bf31670cf40d88512b55752.tar.bz2 |
Allow add_dependencies() on INTERFACE libraries (#15414)
Revert commit v3.0.0-rc1~175^2~20 (add_dependencies: Disallow use with
INTERFACE_LIBRARY, 2013-12-25). Teach our dependency analysis to
transitively follow INTERFACE target utility dependencies as was done or
IMPORTED targets in commit v2.8.6~127^2~1 (Allow add_dependencies() on
imported targets, 2010-11-19). Extend the InterfaceLibrary test with a
case to cover header generation for a header-only INTERFACE library via
a custom target.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/add_dependencies.rst | 4 | ||||
-rw-r--r-- | Help/release/dev/add_dependencies-INTERFACE-libraries.rst | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/Help/command/add_dependencies.rst b/Help/command/add_dependencies.rst index 1cbac20..c3583cf 100644 --- a/Help/command/add_dependencies.rst +++ b/Help/command/add_dependencies.rst @@ -13,8 +13,8 @@ is one created by one of the :command:`add_executable`, :command:`add_library`, or :command:`add_custom_target` commands. Dependencies added to an :ref:`imported target <Imported Targets>` -are followed transitively in its place since the target itself does -not build. +or an :ref:`interface library <Interface Libraries>` are followed +transitively in its place since the target itself does not build. See the ``DEPENDS`` option of :command:`add_custom_target` and :command:`add_custom_command` commands for adding file-level diff --git a/Help/release/dev/add_dependencies-INTERFACE-libraries.rst b/Help/release/dev/add_dependencies-INTERFACE-libraries.rst new file mode 100644 index 0000000..dfac2af --- /dev/null +++ b/Help/release/dev/add_dependencies-INTERFACE-libraries.rst @@ -0,0 +1,7 @@ +add_dependencies-INTERFACE-libraries +------------------------------------ + +* The :command:`add_dependencies` command learned to allow dependencies + to be added to :ref:`interface libraries <Interface Libraries>`. + Dependencies added to an interface library are followed transitively + in its place since the target itself does not build. |