summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index ee1c014..abfaa71 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -587,17 +587,6 @@ void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout,
targetOptions.AddDefine(exportSymbol);
}
- // Override the flag map with cmake-specific settings.
- if(this->Makefile->IsOn("CMAKE_CXX_USE_RTTI"))
- {
- targetOptions.AddFlag("RuntimeTypeInfo", "TRUE");
- }
- if(const char* warningLevel =
- this->Makefile->GetDefinition("CMAKE_CXX_WARNING_LEVEL"))
- {
- targetOptions.AddFlag("WarningLevel", warningLevel);
- }
-
// The intermediate directory name consists of a directory for the
// target and a subdirectory for the configuration name.
std::string intermediateDir = this->GetTargetDirectory(target);