diff options
author | Brad King <brad.king@kitware.com> | 2013-10-07 19:44:59 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-10-07 19:44:59 (GMT) |
commit | b38425fa4b15e4858f0b06bf75ba824550b87c34 (patch) | |
tree | 576318c3e37e3a360b866faa2cb545745bb7d8ba | |
parent | c7384a053e88b688b9f25744299629be444265ac (diff) | |
parent | 0ad2a1c18148b995a6a13be32ce93a625332defd (diff) | |
download | CMake-b38425fa4b15e4858f0b06bf75ba824550b87c34.zip CMake-b38425fa4b15e4858f0b06bf75ba824550b87c34.tar.gz CMake-b38425fa4b15e4858f0b06bf75ba824550b87c34.tar.bz2 |
Merge topic 'private-link-depends-are-package-private'
0ad2a1c Export: Never treat private link libraries as public package dependencies.
-rw-r--r-- | Source/cmExportFileGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index ef336ea..0a93533 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -736,9 +736,10 @@ cmExportFileGenerator "IMPORTED_LINK_INTERFACE_LANGUAGES", iface->Languages, properties, missingTargets); + std::vector<std::string> dummy; this->SetImportLinkProperty(suffix, target, "IMPORTED_LINK_DEPENDENT_LIBRARIES", - iface->SharedDeps, properties, missingTargets); + iface->SharedDeps, properties, dummy); if(iface->Multiplicity > 0) { std::string prop = "IMPORTED_LINK_INTERFACE_MULTIPLICITY"; |