cmake: Simplify find-package mode library addition

It does not need the cmMakefile version.
This commit is contained in:
Stephen Kelly
2016-10-07 20:13:36 +02:00
parent 1efca9f427
commit 6c8dc7f1df

View File

@@ -568,7 +568,7 @@ bool cmake::FindPackage(const std::vector<std::string>& args)
cmSystemTools::ExpandListArgument(libs, libList);
for (std::vector<std::string>::const_iterator libIt = libList.begin();
libIt != libList.end(); ++libIt) {
mf->AddLinkLibraryForTarget(targetName, *libIt, GENERAL_LibraryType);
tgt->AddLinkLibrary(*mf, *libIt, GENERAL_LibraryType);
}
std::string buildType = mf->GetSafeDefinition("CMAKE_BUILD_TYPE");