浏览代码

VS8/9: Add flag map entries for /Zc:wchar_t (#10397)

Sebastian Herbst 15 年之前
父节点
当前提交
ea9de57750
共有 1 个文件被更改,包括 8 次插入2 次删除
  1. 8 2
      Source/cmGlobalVisualStudio8Generator.cxx

+ 8 - 2
Source/cmGlobalVisualStudio8Generator.cxx

@@ -358,8 +358,14 @@ static cmVS7FlagTable cmVS8ExtraFlagTable[] =
   {"ExceptionHandling", "EHsc", "enable c++ exceptions", "1", 0},
   {"ExceptionHandling", "EHsc", "enable c++ exceptions", "1", 0},
   {"ExceptionHandling", "EHa", "enable SEH exceptions", "2", 0},
   {"ExceptionHandling", "EHa", "enable SEH exceptions", "2", 0},
 
 
-  {"EnablePREfast", "analyze", "", "TRUE", 0},
-  {"EnablePREfast", "analyze-", "", "FALSE", 0},
+  {"EnablePREfast", "analyze", "", "true", 0},
+  {"EnablePREfast", "analyze-", "", "false", 0},
+
+  // Language options
+  {"TreatWChar_tAsBuiltInType", "Zc:wchar_t",
+   "wchar_t is a built-in type", "true", 0},
+  {"TreatWChar_tAsBuiltInType", "Zc:wchar_t-",
+   "wchar_t is not a built-in type", "false", 0},
 
 
   {0,0,0,0,0}
   {0,0,0,0,0}
 };
 };