diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-10 16:16:08 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-12-10 16:58:36 (GMT) |
commit | 97fae68b81d7dbb5dda9fe21f860863bcc0c7183 (patch) | |
tree | e42aa63347e642769757e9e8901a757fcbb06506 /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | 330af68ed4eca375160b31aefd71bd6ea11b586f (diff) | |
download | CMake-97fae68b81d7dbb5dda9fe21f860863bcc0c7183.zip CMake-97fae68b81d7dbb5dda9fe21f860863bcc0c7183.tar.gz CMake-97fae68b81d7dbb5dda9fe21f860863bcc0c7183.tar.bz2 |
Remove INTERFACE build targets.
Commit b04f3b9a (Create make rules for INTERFACE_LIBRARY
targets., 2013-08-21) extended the makefile generator to create
build targets for INTERFACE_LIBRARY targets. No other generators
were extended with this feature.
This conflicts with the feature of whitelisting of target properties
read from INTERFACE_LIBRARY targets. The INTERFACE_* properties
of the INTERFACE_LIBRARY may legitimately contain TARGET_PROPERTY
generator expressions for reading properties from the 'head target'.
The 'head target' would be the INTERFACE_LIBRARY itself when creating
the build rules for it, which means that non-whitelisted properties
would be read.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index 35818ee..399b582 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -85,9 +85,6 @@ void cmMakefileLibraryTargetGenerator::WriteRuleFiles() case cmTarget::OBJECT_LIBRARY: this->WriteObjectLibraryRules(); break; - case cmTarget::INTERFACE_LIBRARY: - // Nothing to do. - break; default: // If language is not known, this is an error. cmSystemTools::Error("Unknown Library Type"); |