diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-31 13:52:07 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-06 16:25:10 (GMT) |
commit | 9eb06d0dde52203d3f8ac91ea9a1c5396a09f8af (patch) | |
tree | 149b1c4230b12fc9848cdf99411f0274cb334c1c /Help | |
parent | 10d65d50195e0183120e102c043cc9c96a16a36b (diff) | |
download | CMake-9eb06d0dde52203d3f8ac91ea9a1c5396a09f8af.zip CMake-9eb06d0dde52203d3f8ac91ea9a1c5396a09f8af.tar.gz CMake-9eb06d0dde52203d3f8ac91ea9a1c5396a09f8af.tar.bz2 |
add_library: Disallow invalid signatures for INTERFACE_LIBRARY.
Document the valid signatures. Add a test for the IMPORTED GLOBAL
signature.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/add_library.rst | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/Help/command/add_library.rst b/Help/command/add_library.rst index 45f1102..2d69c89 100644 --- a/Help/command/add_library.rst +++ b/Help/command/add_library.rst @@ -109,12 +109,21 @@ The signature :: - add_library(<name> INTERFACE) + add_library(<name> INTERFACE [IMPORTED [GLOBAL]]) creates an interface target. An interface target does not directly create build output, though it may have properties set on it and it may be installed, exported and imported. Typically the INTERFACE_* properties are populated on the interface target using the -set_property(), target_link_libraries(), target_include_directories() -and target_compile_defintions() commands, and then it is used as an -argument to target_link_libraries() like any other target. +:command:`set_property`, :command:`target_link_libraries`, +:command:`target_include_directories` +and :command:`target_compile_defintions` commands, and then it is used as an +argument to :command:`target_link_libraries` like any other target. + +An ``INTERFACE`` :prop_tgt:`IMPORTED` target may also be created with this +signature. An :prop_tgt:`IMPORTED` library target references a library defined +outside the project. The target name has scope in the directory in which it is +created and below, but the ``GLOBAL`` option extends visibility. It may be +referenced like any target built within the project. :prop_tgt:`IMPORTED` +libraries are useful for convenient reference from commands like +:command:`target_link_libraries`. |