Browse Source

VS generator: support /diagnostics compiler flag

Adding support for this flag so a user can specify it
via the CMAKE_CXX_FLAGS variable.
pull/315/head
Justin Goshi 8 years ago
parent
commit
82f95c9584
  1. 4
      Source/cmVS141CLFlagTable.h

4
Source/cmVS141CLFlagTable.h

@ -1,6 +1,10 @@
static cmVS7FlagTable cmVS141CLFlagTable[] = {
// Enum Properties
{ "DiagnosticsFormat", "diagnostics:classic", "Classic", "Classic", 0 },
{ "DiagnosticsFormat", "diagnostics:column", "Column", "Column", 0 },
{ "DiagnosticsFormat", "diagnostics:caret", "Caret", "Caret", 0 },
{ "DebugInformationFormat", "", "None", "None", 0 },
{ "DebugInformationFormat", "Z7", "C7 compatible", "OldStyle", 0 },
{ "DebugInformationFormat", "Zi", "Program Database", "ProgramDatabase", 0 },

Loading…
Cancel
Save