diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-09 18:41:38 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-09 18:41:38 (GMT) |
commit | 8245f437b6528cfa86dda12e566a32c810f2d64a (patch) | |
tree | 2a7cbdef5bc06663e403b19af241b1acb7402d63 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 181f4cb0aff97af0b5251ad3347e00efe7310ba9 (diff) | |
download | CMake-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/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 2019b8e..53d24a9 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -42,8 +42,7 @@ cmLocalVisualStudio7Generator::~cmLocalVisualStudio7Generator() { } - -void cmLocalVisualStudio7Generator::Generate() +void cmLocalVisualStudio7Generator::AddHelperCommands() { std::set<cmStdString> lang; lang.insert("C"); @@ -53,6 +52,10 @@ void cmLocalVisualStudio7Generator::Generate() lang.insert("DEF"); this->CreateCustomTargetsAndCommands(lang); this->FixGlobalTargets(); +} + +void cmLocalVisualStudio7Generator::Generate() +{ this->OutputVCProjFile(); } |