mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-13 02:29:02 -06:00
BUG: fix for broken borland compiler
This commit is contained in:
@@ -604,8 +604,9 @@ bool cmGlobalGenerator::IsDependedOn(const char* project,
|
||||
l != targets.end(); l++)
|
||||
{
|
||||
cmTarget& target = l->second;
|
||||
if(target.GetUtilities().find(targetIn->GetName()) !=
|
||||
target.GetUtilities().end())
|
||||
std::set<cmStdString>::const_iterator i =
|
||||
target.GetUtilities().find(targetIn->GetName());
|
||||
if(i != target.GetUtilities().end())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user