diff options
author | Brad King <brad.king@kitware.com> | 2016-11-21 15:42:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-21 16:42:01 (GMT) |
commit | 460052516fdd06a2c0c765359f4d92006e67283b (patch) | |
tree | 2513452bbe0c92c0b81b9742cc1272b3e7c4f91a /Help | |
parent | acde2c4a5389bfe5b1af697a02c160060db7d6e8 (diff) | |
download | CMake-460052516fdd06a2c0c765359f4d92006e67283b.zip CMake-460052516fdd06a2c0c765359f4d92006e67283b.tar.gz CMake-460052516fdd06a2c0c765359f4d92006e67283b.tar.bz2 |
Allow NO_SYSTEM_FROM_IMPORTED on imported INTERFACE libraries
Imported INTERFACE libraries can specify include directories via
`INTERFACE_INCLUDE_DIRECTORIES` so the default behavior of treating them
as system include directories applies. Allow users to turn this off by
setting `NO_SYSTEM_FROM_IMPORTED` on such targets.
Closes: #16443
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-buildsystem.7.rst | 1 | ||||
-rw-r--r-- | Help/release/dev/imported-interface-no-system.rst | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst index 89b010d..2e6a803 100644 --- a/Help/manual/cmake-buildsystem.7.rst +++ b/Help/manual/cmake-buildsystem.7.rst @@ -964,6 +964,7 @@ are: * ``EXPORT_NAME`` * ``IMPORTED`` * ``NAME`` +* ``NO_SYSTEM_FROM_IMPORTED`` * Properties matching ``IMPORTED_LIBNAME_*`` * Properties matching ``MAP_IMPORTED_CONFIG_*`` diff --git a/Help/release/dev/imported-interface-no-system.rst b/Help/release/dev/imported-interface-no-system.rst new file mode 100644 index 0000000..3a727cc --- /dev/null +++ b/Help/release/dev/imported-interface-no-system.rst @@ -0,0 +1,5 @@ +imported-interface-no-system +---------------------------- + +* The :prop_tgt:`NO_SYSTEM_FROM_IMPORTED` target property is now supported + on :ref:`Imported <Imported Targets>` :ref:`Interface Libraries`. |