diff options
author | Brad King <brad.king@kitware.com> | 2018-07-16 13:07:18 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-07-16 13:07:23 (GMT) |
commit | 42065828c39a45737101add86f070ae83e6c61f1 (patch) | |
tree | a058982478b43a392f30b25a841ec20063b42f15 /Help/command/add_library.rst | |
parent | 4b00e57de8aaed500de945411912b828892e84d3 (diff) | |
parent | 62b4df1e84104f6c30492fdc12f25fb3cc72f736 (diff) | |
download | CMake-42065828c39a45737101add86f070ae83e6c61f1.zip CMake-42065828c39a45737101add86f070ae83e6c61f1.tar.gz CMake-42065828c39a45737101add86f070ae83e6c61f1.tar.bz2 |
Merge topic 'doc-add_library-IMPORTED_OBJECTS'
62b4df1e84 Help: Mention IMPORTED_OBJECTS in add_library docs
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2216
Diffstat (limited to 'Help/command/add_library.rst')
-rw-r--r-- | Help/command/add_library.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Help/command/add_library.rst b/Help/command/add_library.rst index 5d31c7c..b7ba724 100644 --- a/Help/command/add_library.rst +++ b/Help/command/add_library.rst @@ -83,8 +83,11 @@ about the imported library are specified by setting properties whose names begin in ``IMPORTED_`` and ``INTERFACE_``. The most important such property is :prop_tgt:`IMPORTED_LOCATION` (and its per-configuration variant :prop_tgt:`IMPORTED_LOCATION_<CONFIG>`) which specifies the -location of the main library file on disk. See documentation of the -``IMPORTED_*`` and ``INTERFACE_*`` properties for more information. +location of the main library file on disk. Or, for object libraries, +:prop_tgt:`IMPORTED_OBJECTS` (and :prop_tgt:`IMPORTED_OBJECTS_<CONFIG>`) +specifies the locations of object files on disk. +See documentation of the ``IMPORTED_*`` and ``INTERFACE_*`` properties +for more information. Object Libraries ^^^^^^^^^^^^^^^^ |