cmVS12LibFlagTable.h 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. static cmVS7FlagTable cmVS12LibFlagTable[] = {
  2. // Enum Properties
  3. { "ErrorReporting", "ERRORREPORT:PROMPT", "PromptImmediately",
  4. "PromptImmediately", 0 },
  5. { "ErrorReporting", "ERRORREPORT:QUEUE", "Queue For Next Login",
  6. "QueueForNextLogin", 0 },
  7. { "ErrorReporting", "ERRORREPORT:SEND", "Send Error Report",
  8. "SendErrorReport", 0 },
  9. { "ErrorReporting", "ERRORREPORT:NONE", "No Error Report", "NoErrorReport",
  10. 0 },
  11. { "TargetMachine", "MACHINE:ARM", "MachineARM", "MachineARM", 0 },
  12. { "TargetMachine", "MACHINE:EBC", "MachineEBC", "MachineEBC", 0 },
  13. { "TargetMachine", "MACHINE:IA64", "MachineIA64", "MachineIA64", 0 },
  14. { "TargetMachine", "MACHINE:MIPS", "MachineMIPS", "MachineMIPS", 0 },
  15. { "TargetMachine", "MACHINE:MIPS16", "MachineMIPS16", "MachineMIPS16", 0 },
  16. { "TargetMachine", "MACHINE:MIPSFPU", "MachineMIPSFPU", "MachineMIPSFPU",
  17. 0 },
  18. { "TargetMachine", "MACHINE:MIPSFPU16", "MachineMIPSFPU16",
  19. "MachineMIPSFPU16", 0 },
  20. { "TargetMachine", "MACHINE:SH4", "MachineSH4", "MachineSH4", 0 },
  21. { "TargetMachine", "MACHINE:THUMB", "MachineTHUMB", "MachineTHUMB", 0 },
  22. { "TargetMachine", "MACHINE:X64", "MachineX64", "MachineX64", 0 },
  23. { "TargetMachine", "MACHINE:X86", "MachineX86", "MachineX86", 0 },
  24. { "SubSystem", "SUBSYSTEM:CONSOLE", "Console", "Console", 0 },
  25. { "SubSystem", "SUBSYSTEM:WINDOWS", "Windows", "Windows", 0 },
  26. { "SubSystem", "SUBSYSTEM:NATIVE", "Native", "Native", 0 },
  27. { "SubSystem", "SUBSYSTEM:EFI_APPLICATION", "EFI Application",
  28. "EFI Application", 0 },
  29. { "SubSystem", "SUBSYSTEM:EFI_BOOT_SERVICE_DRIVER",
  30. "EFI Boot Service Driver", "EFI Boot Service Driver", 0 },
  31. { "SubSystem", "SUBSYSTEM:EFI_ROM", "EFI ROM", "EFI ROM", 0 },
  32. { "SubSystem", "SUBSYSTEM:EFI_RUNTIME_DRIVER", "EFI Runtime", "EFI Runtime",
  33. 0 },
  34. { "SubSystem", "SUBSYSTEM:WINDOWSCE", "WindowsCE", "WindowsCE", 0 },
  35. { "SubSystem", "SUBSYSTEM:POSIX", "POSIX", "POSIX", 0 },
  36. // Bool Properties
  37. { "SuppressStartupBanner", "NOLOGO", "", "true", 0 },
  38. { "IgnoreAllDefaultLibraries", "NODEFAULTLIB", "", "true", 0 },
  39. { "TreatLibWarningAsErrors", "WX:NO", "", "false", 0 },
  40. { "TreatLibWarningAsErrors", "WX", "", "true", 0 },
  41. { "Verbose", "VERBOSE", "", "true", 0 },
  42. { "LinkTimeCodeGeneration", "LTCG", "", "true", 0 },
  43. // Bool Properties With Argument
  44. // String List Properties
  45. // Skip [AdditionalDependencies] - no command line Switch.
  46. { "AdditionalLibraryDirectories", "LIBPATH:",
  47. "Additional Library Directories", "",
  48. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  49. { "IgnoreSpecificDefaultLibraries", "NODEFAULTLIB:",
  50. "Ignore Specific Default Libraries", "",
  51. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  52. { "ExportNamedFunctions", "EXPORT:", "Export Named Functions", "",
  53. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  54. { "RemoveObjects", "REMOVE:", "Remove Objects", "",
  55. cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
  56. // String Properties
  57. { "OutputFile", "OUT:", "Output File", "", cmVS7FlagTable::UserValue },
  58. { "ModuleDefinitionFile", "DEF:", "Module Definition File Name", "",
  59. cmVS7FlagTable::UserValue },
  60. { "ForceSymbolReferences", "INCLUDE:", "Force Symbol References", "",
  61. cmVS7FlagTable::UserValue },
  62. { "DisplayLibrary", "LIST:", "Display Library to standard output", "",
  63. cmVS7FlagTable::UserValue },
  64. // Skip [MinimumRequiredVersion] - no command line Switch.
  65. { "Name", "NAME:", "Name", "", cmVS7FlagTable::UserValue },
  66. // Skip [AdditionalOptions] - no command line Switch.
  67. // Skip [TrackerLogDirectory] - no command line Switch.
  68. { 0, 0, 0, 0, 0 }
  69. };