diff options
author | Justin Goshi <jgoshi@microsoft.com> | 2017-10-25 19:09:48 (GMT) |
---|---|---|
committer | Justin Goshi <jgoshi@microsoft.com> | 2017-10-25 19:09:48 (GMT) |
commit | 82f95c958467b3076372247d9a0a7d6d0414c96e (patch) | |
tree | 567dca4814c30b8718b27dfff8ecb02cbbff367a /Source | |
parent | 206354ac4c2b0e245cc02f3c9f8b82990f829ee8 (diff) | |
download | CMake-82f95c958467b3076372247d9a0a7d6d0414c96e.zip CMake-82f95c958467b3076372247d9a0a7d6d0414c96e.tar.gz CMake-82f95c958467b3076372247d9a0a7d6d0414c96e.tar.bz2 |
VS generator: support /diagnostics compiler flag
Adding support for this flag so a user can specify it
via the CMAKE_CXX_FLAGS variable.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmVS141CLFlagTable.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmVS141CLFlagTable.h b/Source/cmVS141CLFlagTable.h index c780d46..7d3e356 100644 --- a/Source/cmVS141CLFlagTable.h +++ b/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 }, |