|
@@ -288,6 +288,20 @@ cmGlobalVisualStudio8Generator
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+//----------------------------------------------------------------------------
|
|
|
|
|
+void cmGlobalVisualStudio8Generator::WriteProjectDepends(
|
|
|
|
|
+ std::ostream& fout, const char*, const char*, cmTarget& t)
|
|
|
|
|
+{
|
|
|
|
|
+ TargetDependSet const& unordered = this->GetTargetDirectDepends(t);
|
|
|
|
|
+ OrderedTargetDependSet depends(unordered);
|
|
|
|
|
+ for(OrderedTargetDependSet::const_iterator i = depends.begin();
|
|
|
|
|
+ i != depends.end(); ++i)
|
|
|
|
|
+ {
|
|
|
|
|
+ std::string guid = this->GetGUID((*i)->GetName());
|
|
|
|
|
+ fout << "\t\t{" << guid << "} = {" << guid << "}\n";
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
//----------------------------------------------------------------------------
|
|
//----------------------------------------------------------------------------
|
|
|
bool cmGlobalVisualStudio8Generator::NeedLinkLibraryDependencies(
|
|
bool cmGlobalVisualStudio8Generator::NeedLinkLibraryDependencies(
|
|
|
cmTarget& target)
|
|
cmTarget& target)
|