diff options
author | Brad King <brad.king@kitware.com> | 2016-05-16 14:11:27 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-05-16 14:11:27 (GMT) |
commit | cd1c3d80d09396f8f2caf280098be798df16827f (patch) | |
tree | efcff152033f33074ba49cba5016b5d57d47c3f6 | |
parent | fba30b2fc7a83972bb1d2baf6f32d11e89fc0d1c (diff) | |
parent | 9cb263d77271598de6eccbf12052e1a7a7a059a4 (diff) | |
download | CMake-cd1c3d80d09396f8f2caf280098be798df16827f.zip CMake-cd1c3d80d09396f8f2caf280098be798df16827f.tar.gz CMake-cd1c3d80d09396f8f2caf280098be798df16827f.tar.bz2 |
Merge topic 'link-item-interface-not-path'
9cb263d7 cmComputeLinkInformation: Do not mark interface library as a path
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index 0aa6a99..5b42b1a 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -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 { |