summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-10-26 13:06:11 (GMT)
committerBrad King <brad.king@kitware.com>2017-10-26 13:11:05 (GMT)
commitfb88d2b5bef30a405e6127db41c8b77e70534db8 (patch)
treeafc9793dfe789d66364b856e37c0206bed40adf0 /Help
parent494906a8a21f44e9233632d9be7f93ee3990aaaf (diff)
downloadCMake-fb88d2b5bef30a405e6127db41c8b77e70534db8.zip
CMake-fb88d2b5bef30a405e6127db41c8b77e70534db8.tar.gz
CMake-fb88d2b5bef30a405e6127db41c8b77e70534db8.tar.bz2
Help: Add notes for topic 'generalize-importedtargets-behavior'
Inspired-by: Deniz Bahadir <dbahadir@benocs.com>
Diffstat (limited to 'Help')
-rw-r--r--Help/release/dev/generalize-importedtargets-behavior.rst25
1 files changed, 25 insertions, 0 deletions
diff --git a/Help/release/dev/generalize-importedtargets-behavior.rst b/Help/release/dev/generalize-importedtargets-behavior.rst
new file mode 100644
index 0000000..c6f4523
--- /dev/null
+++ b/Help/release/dev/generalize-importedtargets-behavior.rst
@@ -0,0 +1,25 @@
+generalize-importedtargets-behavior
+-----------------------------------
+
+* The :command:`target_compile_definitions` command learned to set the
+ :prop_tgt:`INTERFACE_COMPILE_DEFINITIONS` property on
+ :ref:`Imported Targets`.
+
+* The :command:`target_compile_features` command learned to set the
+ :prop_tgt:`INTERFACE_COMPILE_FEATURES` property on :ref:`Imported Targets`.
+
+* The :command:`target_compile_options` command learned to set the
+ :prop_tgt:`INTERFACE_COMPILE_OPTIONS` property on :ref:`Imported Targets`.
+
+* The :command:`target_include_directories` command learned to set the
+ :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` property on
+ :ref:`Imported Targets`.
+
+* The :command:`target_sources` command learned to set the
+ :prop_tgt:`INTERFACE_SOURCES` property on :ref:`Imported Targets`.
+
+* The :command:`target_link_libraries` command learned to set the
+ :prop_tgt:`INTERFACE_LINK_LIBRARIES` property on :ref:`Imported Targets`.
+
+* :ref:`Alias Targets` may now alias :ref:`Imported Targets` that are
+ created with the ``GLOBAL`` option to :command:`add_library`.