Browse Source

BUG: fix for 6720, source groups on vs6 not working

Bill Hoffman 17 years ago
parent
commit
21ad82a21b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalVisualStudio6Generator.cxx

+ 1 - 1
Source/cmLocalVisualStudio6Generator.cxx

@@ -358,7 +358,7 @@ void cmLocalVisualStudio6Generator
     sg->GetSourceFiles();
   // If the group is empty, don't write it at all.
         
-  if(sourceFiles.empty())
+  if(sourceFiles.empty() && sg->GetGroupChildren().empty())
     { 
     return; 
     }