mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-01 04:08:46 -06:00
BUG: Removing part of earlier fix because it does not work with VS generators. It may be restored later after cmOrderLinkDirs is further fixed.
This commit is contained in:
@@ -1392,11 +1392,10 @@ cmLocalGenerator::ComputeLinkInformation(cmTarget& target,
|
||||
if(tgt)
|
||||
{
|
||||
// This is a CMake target. Ask the target for its real name.
|
||||
std::string realLibrary = tgt->GetFullPath(config);
|
||||
linkLibraries.push_back(realLibrary);
|
||||
linkLibraries.push_back(tgt->GetFullName(config));
|
||||
if(fullPathLibs)
|
||||
{
|
||||
fullPathLibs->push_back(realLibrary);
|
||||
fullPathLibs->push_back(tgt->GetFullPath(config));
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user