Merge topic 'link-item-interface-not-path'

9cb263d7 cmComputeLinkInformation: Do not mark interface library as a path
This commit is contained in:
Brad King 2016-05-16 10:11:27 -04:00 committed by CMake Topic Stage
commit cd1c3d80d0
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ void cmComputeLinkInformation::AddItem(std::string const& item,
// Add the interface library as an item so it can be considered as part
// of COMPATIBLE_INTERFACE_ enforcement. The generators will ignore
// this for the actual link line.
this->Items.push_back(Item(std::string(), true, tgt));
this->Items.push_back(Item(std::string(), false, tgt));
}
else
{