diff options
author | Brad King <brad.king@kitware.com> | 2023-03-02 20:25:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-03-02 20:25:32 (GMT) |
commit | 8adcb739567aae6be3a501cb1bf2856e2db25c79 (patch) | |
tree | d244a338da936536d3acdf098bbf1f99852996c5 /Help/prop_tgt | |
parent | e1032a22ebe4e1ff8df935470910d48f602f0893 (diff) | |
download | CMake-8adcb739567aae6be3a501cb1bf2856e2db25c79.zip CMake-8adcb739567aae6be3a501cb1bf2856e2db25c79.tar.gz CMake-8adcb739567aae6be3a501cb1bf2856e2db25c79.tar.bz2 |
Help:IMPORTED_CONFIGURATIONS: Mention relation to IMPORTED_LOCATION
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r-- | Help/prop_tgt/IMPORTED_CONFIGURATIONS.rst | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/Help/prop_tgt/IMPORTED_CONFIGURATIONS.rst b/Help/prop_tgt/IMPORTED_CONFIGURATIONS.rst index 6de1baa..8605548 100644 --- a/Help/prop_tgt/IMPORTED_CONFIGURATIONS.rst +++ b/Help/prop_tgt/IMPORTED_CONFIGURATIONS.rst @@ -1,11 +1,20 @@ IMPORTED_CONFIGURATIONS ----------------------- -Configurations provided for an IMPORTED target. - -Set this to the list of configuration names available for an IMPORTED -target. The names correspond to configurations defined in the project -from which the target is imported. If the importing project uses a -different set of configurations the names may be mapped using the -MAP_IMPORTED_CONFIG_<CONFIG> property. Ignored for non-imported -targets. +Configurations provided for an :ref:`imported target <Imported targets>`. + +Set this to the list of configuration names available for an imported +target. For each configuration named, the imported target's artifacts +must be specified in other target properties: + +* :prop_tgt:`IMPORTED_LOCATION_<CONFIG>`, or +* :prop_tgt:`IMPORTED_IMPLIB_<CONFIG>` (on DLL platforms), or +* :prop_tgt:`IMPORTED_OBJECTS_<CONFIG>` (for :ref:`Object Libraries`), or +* :prop_tgt:`IMPORTED_LIBNAME_<CONFIG>` (for :ref:`Interface Libraries`). + +The configuration names correspond to those defined in the project from +which the target is imported. If the importing project uses a different +set of configurations, the names may be mapped using the +:prop_tgt:`MAP_IMPORTED_CONFIG_<CONFIG>` target property. + +The ``IMPORTED_CONFIGURATIONS`` property is ignored for non-imported targets. |