diff options
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index adb3f57..2c35a41 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -317,6 +317,7 @@ cmGlobalVisualStudio71Generator const char* dspname, const char*, cmTarget& target) { +#if 0 // Create inter-target dependencies in the solution file. For VS // 7.1 and below we cannot let static libraries depend directly on // targets to which they "link" because the librarian tool will copy @@ -324,7 +325,10 @@ cmGlobalVisualStudio71Generator // cmGlobalVisualStudioGenerator::FixUtilityDependsForTarget for a // work-around. VS 8 and above do not have this problem. if (!this->VSLinksDependencies() || - target.GetType() != cmTarget::STATIC_LIBRARY) + target.GetType() != cmTarget::STATIC_LIBRARY); +#else + if (target.GetType() != cmTarget::STATIC_LIBRARY) +#endif { cmTarget::LinkLibraryVectorType::const_iterator j, jend; j = target.GetLinkLibraries().begin(); |