cmVS12MASMFlagTable.h 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. static cmVS7FlagTable cmVS12MASMFlagTable[] = {
  2. // Enum Properties
  3. { "PreserveIdentifierCase", "", "Default", "0", 0 },
  4. { "PreserveIdentifierCase", "Cp", "Preserves Identifier Case (/Cp)", "1",
  5. 0 },
  6. { "PreserveIdentifierCase", "Cu",
  7. "Maps all identifiers to upper case. (/Cu)", "2", 0 },
  8. { "PreserveIdentifierCase", "Cx",
  9. "Preserves case in public and extern symbols. (/Cx)", "3", 0 },
  10. { "WarningLevel", "W0", "Warning Level 0 (/W0)", "0", 0 },
  11. { "WarningLevel", "W1", "Warning Level 1 (/W1)", "1", 0 },
  12. { "WarningLevel", "W2", "Warning Level 2 (/W2)", "2", 0 },
  13. { "WarningLevel", "W3", "Warning Level 3 (/W3)", "3", 0 },
  14. { "PackAlignmentBoundary", "", "Default", "0", 0 },
  15. { "PackAlignmentBoundary", "Zp1", "One Byte Boundary (/Zp1)", "1", 0 },
  16. { "PackAlignmentBoundary", "Zp2", "Two Byte Boundary (/Zp2)", "2", 0 },
  17. { "PackAlignmentBoundary", "Zp4", "Four Byte Boundary (/Zp4)", "3", 0 },
  18. { "PackAlignmentBoundary", "Zp8", "Eight Byte Boundary (/Zp8)", "4", 0 },
  19. { "PackAlignmentBoundary", "Zp16", "Sixteen Byte Boundary (/Zp16)", "5", 0 },
  20. { "CallingConvention", "", "Default", "0", 0 },
  21. { "CallingConvention", "Gd", "Use C-style Calling Convention (/Gd)", "1",
  22. 0 },
  23. { "CallingConvention", "Gz", "Use stdcall Calling Convention (/Gz)", "2",
  24. 0 },
  25. { "CallingConvention", "Gc", "Use Pascal Calling Convention (/Gc)", "3", 0 },
  26. { "ErrorReporting", "errorReport:prompt",
  27. "Prompt to send report immediately (/errorReport:prompt)", "0", 0 },
  28. { "ErrorReporting", "errorReport:queue",
  29. "Prompt to send report at the next logon (/errorReport:queue)", "1", 0 },
  30. { "ErrorReporting", "errorReport:send",
  31. "Automatically send report (/errorReport:send)", "2", 0 },
  32. { "ErrorReporting", "errorReport:none",
  33. "Do not send report (/errorReport:none)", "3", 0 },
  34. // Bool Properties
  35. { "NoLogo", "nologo", "", "true", 0 },
  36. { "GeneratePreprocessedSourceListing", "EP", "", "true", 0 },
  37. { "ListAllAvailableInformation", "Sa", "", "true", 0 },
  38. { "UseSafeExceptionHandlers", "safeseh", "", "true", 0 },
  39. { "AddFirstPassListing", "Sf", "", "true", 0 },
  40. { "EnableAssemblyGeneratedCodeListing", "Sg", "", "true", 0 },
  41. { "DisableSymbolTable", "Sn", "", "true", 0 },
  42. { "EnableFalseConditionalsInListing", "Sx", "", "true", 0 },
  43. { "TreatWarningsAsErrors", "WX", "", "true", 0 },
  44. { "MakeAllSymbolsPublic", "Zf", "", "true", 0 },
  45. { "GenerateDebugInformation", "Zi", "", "true", 0 },
  46. { "EnableMASM51Compatibility", "Zm", "", "true", 0 },
  47. { "PerformSyntaxCheckOnly", "Zs", "", "true", 0 },
  48. // Bool Properties With Argument
  49. // String List Properties
  50. { "PreprocessorDefinitions", "D", "Preprocessor Definitions", "",
  51. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  52. { "IncludePaths", "I", "Include Paths", "",
  53. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  54. { "BrowseFile", "FR", "Generate Browse Information File", "",
  55. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  56. // Skip [AdditionalDependencies] - no command line Switch.
  57. // String Properties
  58. // Skip [Inputs] - no command line Switch.
  59. { "ObjectFileName", "Fo", "Object File Name", "",
  60. cmVS7FlagTable::UserValue },
  61. { "AssembledCodeListingFile", "Fl", "Assembled Code Listing File", "",
  62. cmVS7FlagTable::UserValue },
  63. // Skip [CommandLineTemplate] - no command line Switch.
  64. // Skip [ExecutionDescription] - no command line Switch.
  65. // Skip [AdditionalOptions] - no command line Switch.
  66. { 0, 0, 0, 0, 0 }
  67. };