diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-06-26 15:50:09 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-06-26 15:50:09 (GMT) |
commit | 798024bebf7d5a63862bc92a838cb71840736929 (patch) | |
tree | 9d8a5fd0f0a8c25f81a60032b078d6378abd7f1a /Source/cmVS10CLFlagTable.h | |
parent | 688db8a17d8c24c165ebaaeeb2f51ad559f4f9c9 (diff) | |
download | CMake-798024bebf7d5a63862bc92a838cb71840736929.zip CMake-798024bebf7d5a63862bc92a838cb71840736929.tar.gz CMake-798024bebf7d5a63862bc92a838cb71840736929.tar.bz2 |
ENH: fix line length issues
Diffstat (limited to 'Source/cmVS10CLFlagTable.h')
-rw-r--r-- | Source/cmVS10CLFlagTable.h | 274 |
1 files changed, 180 insertions, 94 deletions
diff --git a/Source/cmVS10CLFlagTable.h b/Source/cmVS10CLFlagTable.h index 08f7bd2..74bdea2 100644 --- a/Source/cmVS10CLFlagTable.h +++ b/Source/cmVS10CLFlagTable.h @@ -2,89 +2,156 @@ static cmVS7FlagTable cmVS10CLFlagTable[] = { //Enum Properties - {"DebugInformationFormat", "Z7", "C7 compatible", "OldStyle", 0}, - {"DebugInformationFormat", "Zi", "Program Database", "ProgramDatabase", 0}, - {"DebugInformationFormat", "ZI", "Program Database for Edit And Continue", "EditAndContinue", 0}, - - {"WarningLevel", "W0", "Turn Off All Warnings", "TurnOffAllWarnings", 0}, - {"WarningLevel", "W1", "Level1", "Level1", 0}, - {"WarningLevel", "W2", "Level2", "Level2", 0}, - {"WarningLevel", "W3", "Level3", "Level3", 0}, - {"WarningLevel", "W4", "Level4", "Level4", 0}, - {"WarningLevel", "Wall", "EnableAllWarnings", "EnableAllWarnings", 0}, - - {"Optimization", "Od", "Disabled", "Disabled", 0}, - {"Optimization", "O1", "Minimize Size", "MinSpace", 0}, - {"Optimization", "O2", "Maximize Speed", "MaxSpeed", 0}, - {"Optimization", "Ox", "Full Optimization", "Full", 0}, - - {"InlineFunctionExpansion", "", "Default", "Default", 0}, - {"InlineFunctionExpansion", "Ob0", "Disabled", "Disabled", 0}, - {"InlineFunctionExpansion", "Ob1", "Only __inline", "OnlyExplicitInline", 0}, - {"InlineFunctionExpansion", "Ob2", "Any Suitable", "AnySuitable", 0}, - - {"FavorSizeOrSpeed", "Os", "Favor small code", "Size", 0}, - {"FavorSizeOrSpeed", "Ot", "Favor fast code", "Speed", 0}, - {"FavorSizeOrSpeed", "", "Neither", "Neither", 0}, - - {"ExceptionHandling", "EHa", "Yes with SEH Exceptions", "Async", 0}, - {"ExceptionHandling", "EHsc", "Yes", "Sync", 0}, - {"ExceptionHandling", "EHs", "Yes with Extern C functions", "SyncCThrow", 0}, - {"ExceptionHandling", "", "No", "false", 0}, - - {"BasicRuntimeChecks", "RTCs", "Stack Frames", "StackFrameRuntimeCheck", 0}, - {"BasicRuntimeChecks", "RTCu", "Uninitialized variables", "UninitializedLocalUsageCheck", 0}, - {"BasicRuntimeChecks", "RTC1", "Both (/RTC1, equiv. to /RTCsu)", "EnableFastChecks", 0}, - {"BasicRuntimeChecks", "", "Default", "Default", 0}, - - {"RuntimeLibrary", "MT", "Multi-threaded", "MultiThreaded", 0}, - {"RuntimeLibrary", "MTd", "Multi-threaded Debug", "MultiThreadedDebug", 0}, - {"RuntimeLibrary", "MD", "Multi-threaded DLL", "MultiThreadedDLL", 0}, - {"RuntimeLibrary", "MDd", "Multi-threaded Debug DLL", "MultiThreadedDebugDLL", 0}, - - {"StructMemberAlignment", "Zp1", "1 Byte", "1Byte", 0}, - {"StructMemberAlignment", "Zp2", "2 Bytes", "2Bytes", 0}, - {"StructMemberAlignment", "Zp4", "4 Byte", "4Bytes", 0}, - {"StructMemberAlignment", "Zp8", "8 Bytes", "8Bytes", 0}, - {"StructMemberAlignment", "Zp16", "16 Bytes", "16Bytes", 0}, - {"StructMemberAlignment", "", "Default", "Default", 0}, - - {"EnableEnhancedInstructionSet", "arch:SSE", "Streaming SIMD Extensions (/arch:SSE)", "StreamingSIMDExtensions", 0}, - {"EnableEnhancedInstructionSet", "arch:SSE2", "Streaming SIMD Extensions 2 (/arch:SSE2)", "StreamingSIMDExtensions2", 0}, - {"EnableEnhancedInstructionSet", "", "Not Set", "NotSet", 0}, - - {"FloatingPointModel", "fp:precise", "Precise", "Precise", 0}, - {"FloatingPointModel", "fp:strict", "Strict", "Strict", 0}, - {"FloatingPointModel", "fp:fast", "Fast", "Fast", 0}, - - {"PrecompiledHeader", "Yc", "Create", "Create", 0}, - {"PrecompiledHeader", "Yu", "Use", "Use", 0}, - {"PrecompiledHeader", "", "Not Using Precompiled Headers", "NotUsing", 0}, - - {"AssemblerOutput", "", "No Listing", "NoListing", 0}, - {"AssemblerOutput", "FA", "Assembly-Only Listing", "AssemblyCode", 0}, - {"AssemblerOutput", "FAc", "Assembly With Machine Code", "AssemblyAndMachineCode", 0}, - {"AssemblerOutput", "FAs", "Assembly With Source Code", "AssemblyAndSourceCode", 0}, - {"AssemblerOutput", "FAcs", "Assembly, Machine Code and Source", "All", 0}, - - {"CallingConvention", "Gd", "__cdecl", "Cdecl", 0}, - {"CallingConvention", "Gr", "__fastcall", "FastCall", 0}, - {"CallingConvention", "Gz", "__stdcall", "StdCall", 0}, - - {"CompileAs", "", "Default", "Default", 0}, - {"CompileAs", "TC", "Compile as C Code", "CompileAsC", 0}, - {"CompileAs", "TP", "Compile as C++ Code", "CompileAsCpp", 0}, - - {"ErrorReporting", "errorReport:none", "Do Not Send Report", "None", 0}, - {"ErrorReporting", "errorReport:prompt", "Prompt Immediatelly", "Prompt", 0}, - {"ErrorReporting", "errorReport:queue", "Queue For Next Login", "Queue", 0}, - {"ErrorReporting", "errorReport:send", "Send Automatically", "Send", 0}, - - {"CompileAsManaged", "", "No Common Language RunTime Support", "false", 0}, - {"CompileAsManaged", "clr", "Common Language RunTime Support", "true", 0}, - {"CompileAsManaged", "clr:pure", "Pure MSIL Common Language RunTime Support", "Pure", 0}, - {"CompileAsManaged", "clr:safe", "Safe MSIL Common Language RunTime Support", "Safe", 0}, - {"CompileAsManaged", "clr:oldSyntax", "Common Language RunTime Support, Old Syntax", "OldSyntax", 0}, + {"DebugInformationFormat", "Z7", + "C7 compatible", "OldStyle", 0}, + {"DebugInformationFormat", "Zi", + "Program Database", "ProgramDatabase", 0}, + {"DebugInformationFormat", "ZI", + "Program Database for Edit And Continue", "EditAndContinue", 0}, + + {"WarningLevel", "W0", + "Turn Off All Warnings", "TurnOffAllWarnings", 0}, + {"WarningLevel", "W1", + "Level1", "Level1", 0}, + {"WarningLevel", "W2", + "Level2", "Level2", 0}, + {"WarningLevel", "W3", + "Level3", "Level3", 0}, + {"WarningLevel", "W4", + "Level4", "Level4", 0}, + {"WarningLevel", "Wall", + "EnableAllWarnings", "EnableAllWarnings", 0}, + + {"Optimization", "Od", + "Disabled", "Disabled", 0}, + {"Optimization", "O1", + "Minimize Size", "MinSpace", 0}, + {"Optimization", "O2", + "Maximize Speed", "MaxSpeed", 0}, + {"Optimization", "Ox", + "Full Optimization", "Full", 0}, + + {"InlineFunctionExpansion", "", + "Default", "Default", 0}, + {"InlineFunctionExpansion", "Ob0", + "Disabled", "Disabled", 0}, + {"InlineFunctionExpansion", "Ob1", + "Only __inline", "OnlyExplicitInline", 0}, + {"InlineFunctionExpansion", "Ob2", + "Any Suitable", "AnySuitable", 0}, + + {"FavorSizeOrSpeed", "Os", + "Favor small code", "Size", 0}, + {"FavorSizeOrSpeed", "Ot", + "Favor fast code", "Speed", 0}, + {"FavorSizeOrSpeed", "", + "Neither", "Neither", 0}, + + {"ExceptionHandling", "EHa", + "Yes with SEH Exceptions", "Async", 0}, + {"ExceptionHandling", "EHsc", + "Yes", "Sync", 0}, + {"ExceptionHandling", "EHs", + "Yes with Extern C functions", "SyncCThrow", 0}, + {"ExceptionHandling", "", + "No", "false", 0}, + + {"BasicRuntimeChecks", "RTCs", + "Stack Frames", "StackFrameRuntimeCheck", 0}, + {"BasicRuntimeChecks", "RTCu", + "Uninitialized variables", "UninitializedLocalUsageCheck", 0}, + {"BasicRuntimeChecks", "RTC1", + "Both (/RTC1, equiv. to /RTCsu)", "EnableFastChecks", 0}, + {"BasicRuntimeChecks", "", + "Default", "Default", 0}, + + {"RuntimeLibrary", "MT", + "Multi-threaded", "MultiThreaded", 0}, + {"RuntimeLibrary", "MTd", + "Multi-threaded Debug", "MultiThreadedDebug", 0}, + {"RuntimeLibrary", "MD", + "Multi-threaded DLL", "MultiThreadedDLL", 0}, + {"RuntimeLibrary", "MDd", + "Multi-threaded Debug DLL", "MultiThreadedDebugDLL", 0}, + + {"StructMemberAlignment", "Zp1", + "1 Byte", "1Byte", 0}, + {"StructMemberAlignment", "Zp2", + "2 Bytes", "2Bytes", 0}, + {"StructMemberAlignment", "Zp4", + "4 Byte", "4Bytes", 0}, + {"StructMemberAlignment", "Zp8", + "8 Bytes", "8Bytes", 0}, + {"StructMemberAlignment", "Zp16", + "16 Bytes", "16Bytes", 0}, + {"StructMemberAlignment", "", + "Default", "Default", 0}, + + {"EnableEnhancedInstructionSet", "arch:SSE", + "Streaming SIMD Extensions (/arch:SSE)", "StreamingSIMDExtensions", 0}, + {"EnableEnhancedInstructionSet", "arch:SSE2", + "Streaming SIMD Extensions 2 (/arch:SSE2)", "StreamingSIMDExtensions2", 0}, + {"EnableEnhancedInstructionSet", "", + "Not Set", "NotSet", 0}, + + {"FloatingPointModel", "fp:precise", + "Precise", "Precise", 0}, + {"FloatingPointModel", "fp:strict", + "Strict", "Strict", 0}, + {"FloatingPointModel", "fp:fast", + "Fast", "Fast", 0}, + + {"PrecompiledHeader", "Yc", + "Create", "Create", 0}, + {"PrecompiledHeader", "Yu", + "Use", "Use", 0}, + {"PrecompiledHeader", "", + "Not Using Precompiled Headers", "NotUsing", 0}, + + {"AssemblerOutput", "", + "No Listing", "NoListing", 0}, + {"AssemblerOutput", "FA", + "Assembly-Only Listing", "AssemblyCode", 0}, + {"AssemblerOutput", "FAc", + "Assembly With Machine Code", "AssemblyAndMachineCode", 0}, + {"AssemblerOutput", "FAs", + "Assembly With Source Code", "AssemblyAndSourceCode", 0}, + {"AssemblerOutput", "FAcs", + "Assembly, Machine Code and Source", "All", 0}, + + {"CallingConvention", "Gd", + "__cdecl", "Cdecl", 0}, + {"CallingConvention", "Gr", + "__fastcall", "FastCall", 0}, + {"CallingConvention", "Gz", + "__stdcall", "StdCall", 0}, + + {"CompileAs", "", + "Default", "Default", 0}, + {"CompileAs", "TC", + "Compile as C Code", "CompileAsC", 0}, + {"CompileAs", "TP", + "Compile as C++ Code", "CompileAsCpp", 0}, + + {"ErrorReporting", "errorReport:none", + "Do Not Send Report", "None", 0}, + {"ErrorReporting", "errorReport:prompt", + "Prompt Immediatelly", "Prompt", 0}, + {"ErrorReporting", "errorReport:queue", + "Queue For Next Login", "Queue", 0}, + {"ErrorReporting", "errorReport:send", + "Send Automatically", "Send", 0}, + + {"CompileAsManaged", "", + "No Common Language RunTime Support", "false", 0}, + {"CompileAsManaged", "clr", + "Common Language RunTime Support", "true", 0}, + {"CompileAsManaged", "clr:pure", + "Pure MSIL Common Language RunTime Support", "Pure", 0}, + {"CompileAsManaged", "clr:safe", + "Safe MSIL Common Language RunTime Support", "Safe", 0}, + {"CompileAsManaged", "clr:oldSyntax", + "Common Language RunTime Support, Old Syntax", "OldSyntax", 0}, //Bool Properties @@ -133,20 +200,39 @@ static cmVS7FlagTable cmVS10CLFlagTable[] = //Bool Properties With Argument {"MultiProcessorCompilation", "MP", "", "true", cmVS7FlagTable::Continue}, - {"ProcessorNumber", "MP", "Multi-processor Compilation", "", cmVS7FlagTable::UserValueRequired}, + {"ProcessorNumber", "MP", "Multi-processor Compilation", "", + cmVS7FlagTable::UserValueRequired}, {"GenerateXMLDocumentationFiles", "doc", "", "true", cmVS7FlagTable::Continue}, - {"XMLDocumentationFileName", "doc", "Generate XML Documentation Files", "", cmVS7FlagTable::UserValueRequired}, + {"XMLDocumentationFileName", "doc", "Generate XML Documentation Files", "", + cmVS7FlagTable::UserValueRequired}, {"BrowseInformation", "FR", "", "true", cmVS7FlagTable::Continue}, - {"BrowseInformationFile", "FR", "Enable Browse Information", "", cmVS7FlagTable::UserValueRequired}, + {"BrowseInformationFile", "FR", "Enable Browse Information", "", + cmVS7FlagTable::UserValueRequired}, //String List Properties - {"AdditionalIncludeDirectories", "I", "Additional Include Directories", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, - {"AdditionalUsingDirectories", "AI", "Resolve #using References", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, - {"PreprocessorDefinitions", "D ", "Preprocessor Definitions", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, - {"UndefinePreprocessorDefinitions", "U", "Undefine Preprocessor Definitions", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, - {"DisableSpecificWarnings", "wd", "Disable Specific Warnings", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, - {"ForcedIncludeFiles", "FI", "Forced Include File", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, - {"ForcedUsingFiles", "FU", "Forced #using File", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, - {"TreatSpecificWarningsAsErrors", "we", "Treat Specific Warnings As Errors", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"AdditionalIncludeDirectories", "I", + "Additional Include Directories", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"AdditionalUsingDirectories", "AI", + "Resolve #using References", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"PreprocessorDefinitions", "D ", + "Preprocessor Definitions", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"UndefinePreprocessorDefinitions", "U", + "Undefine Preprocessor Definitions", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"DisableSpecificWarnings", "wd", + "Disable Specific Warnings", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"ForcedIncludeFiles", "FI", + "Forced Include File", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"ForcedUsingFiles", "FU", + "Forced #using File", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + {"TreatSpecificWarningsAsErrors", "we", + "Treat Specific Warnings As Errors", + "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, {0,0,0,0,0} }; |