[cmake-commits] king committed cmLocalVisualStudio7Generator.cxx 1.174 1.175

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Mar 7 15:57:54 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv18753/Source

Modified Files:
	cmLocalVisualStudio7Generator.cxx 
Log Message:
BUG: Get rid of ancient variables CMAKE_CXX_WARNING_LEVEL, CMAKE_CXX_USE_RTTI, CMAKE_CXX_STACK_SIZE which are only partially implemented and now taken care of by flag mapping anyway.


Index: cmLocalVisualStudio7Generator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalVisualStudio7Generator.cxx,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -d -r1.174 -r1.175
--- cmLocalVisualStudio7Generator.cxx	2 Mar 2007 15:50:18 -0000	1.174
+++ cmLocalVisualStudio7Generator.cxx	7 Mar 2007 20:57:52 -0000	1.175
@@ -587,17 +587,6 @@
     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);



More information about the Cmake-commits mailing list