diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-07 16:07:34 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-07 16:07:34 (GMT) |
commit | 810878649442bc6dadc002edf92ff0e725138465 (patch) | |
tree | 0fe59db39f0c9d9081f3ccbdff15e5a006c371d4 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | 7758abb2e657d26d474fe3db55c59b08e292975f (diff) | |
download | CMake-810878649442bc6dadc002edf92ff0e725138465.zip CMake-810878649442bc6dadc002edf92ff0e725138465.tar.gz CMake-810878649442bc6dadc002edf92ff0e725138465.tar.bz2 |
ENH: fix for incorrect setting of CONFIZGURATION_TYPES
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index e29b076..a604485 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -39,8 +39,8 @@ void cmGlobalVisualStudio7Generator::EnableLanguage(std::vector<std::string>cons mf->AddDefinition("CMAKE_GENERATOR_Fortran", "ifort"); // Create list of configurations requested by user's cache, if any. - this->GenerateConfigurations(mf); this->cmGlobalGenerator::EnableLanguage(lang, mf); + this->GenerateConfigurations(mf); } std::string cmGlobalVisualStudio7Generator::GenerateBuildCommand(const char* makeProgram, |