diff options
author | Brad King <brad.king@kitware.com> | 2014-07-14 13:37:52 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-07-14 13:37:52 (GMT) |
commit | 47bf22e121947169af53acbe89a30ff48fd2d75e (patch) | |
tree | a6a954bdb3f8d2e7f5e270b0f307ea2139252ee8 /Help | |
parent | cb867dc4f4bb17d3fd9a5182ac8b789a9dc01818 (diff) | |
parent | affe9d56a2e17683dc87c457c27cad7f39b0ad56 (diff) | |
download | CMake-47bf22e121947169af53acbe89a30ff48fd2d75e.zip CMake-47bf22e121947169af53acbe89a30ff48fd2d75e.tar.gz CMake-47bf22e121947169af53acbe89a30ff48fd2d75e.tar.bz2 |
Merge topic 'interface-sources-target-objects'
affe9d56 Allow INTERFACE_SOURCES to specify $<TARGET_OBJECTS> (#14970)
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-buildsystem.7.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst index a7402f7..1ce9a7e 100644 --- a/Help/manual/cmake-buildsystem.7.rst +++ b/Help/manual/cmake-buildsystem.7.rst @@ -107,6 +107,12 @@ they may not be installed, exported, or used in the right hand side of :command:`target_link_libraries`. They also may not be used as the ``TARGET`` in a use of the :command:`add_custom_command(TARGET)` command signature. +Although object libraries may not be named directly in calls to +the :command:`target_link_libraries` command, they can be "linked" +indirectly by using an :ref:`Interface Library <Interface Libraries>` +whose :prop_tgt:`INTERFACE_SOURCES` target property is set to name +``$<TARGET_OBJECTS:objlib>``. + Build Specification and Usage Requirements ========================================== |