diff options
author | Brad King <brad.king@kitware.com> | 2020-07-14 17:55:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-08-03 14:04:23 (GMT) |
commit | afb998704e67d3d3ce5b24c112cb06e770fca78d (patch) | |
tree | 8e8ecdb72ffb76a8d122be31211d684f107890db /Help/manual/cmake-buildsystem.7.rst | |
parent | e7edba2bafc7eb187a05c20acf4e859e500c7c5b (diff) | |
download | CMake-afb998704e67d3d3ce5b24c112cb06e770fca78d.zip CMake-afb998704e67d3d3ce5b24c112cb06e770fca78d.tar.gz CMake-afb998704e67d3d3ce5b24c112cb06e770fca78d.tar.bz2 |
Remove filtering of allowed INTERFACE library properties
Previously we disallowed use of arbitrary properties on INTERFACE
libraries. The goal was to future-proof projects using them by not
allowing properties to be set that may affect their future inclusion in
the generated buildsystem. In order to prepare to actually include
INTERFACE libraries in the generated buildsystem, drop the filter and
allow arbitrary properties to be set.
Issue: #19145
Diffstat (limited to 'Help/manual/cmake-buildsystem.7.rst')
-rw-r--r-- | Help/manual/cmake-buildsystem.7.rst | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst index d8142a2..6eea191 100644 --- a/Help/manual/cmake-buildsystem.7.rst +++ b/Help/manual/cmake-buildsystem.7.rst @@ -975,19 +975,6 @@ This way, the build specification of ``exe1`` is expressed entirely as linked targets, and the complexity of compiler-specific flags is encapsulated in an ``INTERFACE`` library target. -The properties permitted to be set on or read from an ``INTERFACE`` library -are: - -* Properties matching ``INTERFACE_*`` -* Built-in properties matching ``COMPATIBLE_INTERFACE_*`` -* ``EXPORT_NAME`` -* ``EXPORT_PROPERTIES`` -* ``IMPORTED`` -* ``MANUALLY_ADDED_DEPENDENCIES`` -* ``NAME`` -* Properties matching ``IMPORTED_LIBNAME_*`` -* Properties matching ``MAP_IMPORTED_CONFIG_*`` - ``INTERFACE`` libraries may be installed and exported. Any content they refer to must be installed separately: |