diff options
author | Brad King <brad.king@kitware.com> | 2007-11-19 18:44:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-11-19 18:44:51 (GMT) |
commit | 9f864879b4869cefea70099414634c0aed2eb547 (patch) | |
tree | 2bbf3d3f5ece0f775b8dc81783338b4aab714d42 /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | 13e96b14031e72a13e1e9da674bb50a05ded1200 (diff) | |
download | CMake-9f864879b4869cefea70099414634c0aed2eb547.zip CMake-9f864879b4869cefea70099414634c0aed2eb547.tar.gz CMake-9f864879b4869cefea70099414634c0aed2eb547.tar.bz2 |
ENH: Renamed cmGlobalVisualStudioGenerator::CallVisualStudioReloadMacro method to CallVisualStudioMacro and added arguments to select which macro to call and optionally pass the solution file name. Added option to call to new StopBuild macro. Updated logic for replacing the macro file in user directories when the distributed version is newer.
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 6c322bb..1ef34bc 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -224,7 +224,7 @@ void cmGlobalVisualStudio7Generator::Generate() // tell Visual Studio to reload them... if(!cmSystemTools::GetErrorOccuredFlag()) { - this->CallVisualStudioReloadMacro(); + this->CallVisualStudioMacro(MacroReload); } } |