diff options
author | Brad King <brad.king@kitware.com> | 2014-06-12 13:59:13 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-12 13:59:13 -0400 |
commit | 20f5460288eea238aa6c5d4257df90d7d32f9dae (patch) | |
tree | 59628443849aa8494e1e46e1a0054abc7c808603 /Help | |
parent | a81531817ef26f4e23933274c2317fd698336c04 (diff) | |
download | cmake-20f5460288eea238aa6c5d4257df90d7d32f9dae.tar.gz |
Help: Link to Object Library docs from add_library
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/add_library.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/command/add_library.rst b/Help/command/add_library.rst index 18d8fe32d7..f19b5c042a 100644 --- a/Help/command/add_library.rst +++ b/Help/command/add_library.rst @@ -80,8 +80,8 @@ Object Libraries add_library(<name> OBJECT <src>...) -Creates a special "object library" target. An object library compiles -source files but does not archive or link their object files into a +Creates an :ref:`Object Library <Object Libraries>`. An object library +compiles source files but does not archive or link their object files into a library. Instead other targets created by :command:`add_library` or :command:`add_executable` may reference the objects using an expression of the form ``$<TARGET_OBJECTS:objlib>`` as a source, where ``objlib`` is the |