summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio6Generator.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-09 18:41:38 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-05-09 18:41:38 (GMT)
commit8245f437b6528cfa86dda12e566a32c810f2d64a (patch)
tree2a7cbdef5bc06663e403b19af241b1acb7402d63 /Source/cmLocalVisualStudio6Generator.cxx
parent181f4cb0aff97af0b5251ad3347e00efe7310ba9 (diff)
downloadCMake-8245f437b6528cfa86dda12e566a32c810f2d64a.zip
CMake-8245f437b6528cfa86dda12e566a32c810f2d64a.tar.gz
CMake-8245f437b6528cfa86dda12e566a32c810f2d64a.tar.bz2
BUG: fix problem for non-C/CXX languages with Visual Studio, the
dependencies for the custom commands added for java were not handled correctly. Needs more work. Alex
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio6Generator.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx
index b3ae6e2..071835a 100644
--- a/Source/cmLocalVisualStudio6Generator.cxx
+++ b/Source/cmLocalVisualStudio6Generator.cxx
@@ -32,13 +32,16 @@ cmLocalVisualStudio6Generator::~cmLocalVisualStudio6Generator()
{
}
-
-void cmLocalVisualStudio6Generator::Generate()
-{
+void cmLocalVisualStudio6Generator::AddHelperCommands()
+{
std::set<cmStdString> lang;
lang.insert("C");
lang.insert("CXX");
this->CreateCustomTargetsAndCommands(lang);
+}
+
+void cmLocalVisualStudio6Generator::Generate()
+{
this->OutputDSPFile();
}