VS: Add v140 and v141 flag table entries for /DEBUG:NONE and /DEBUG:FULL

This commit is contained in:
Ian Hojnicki
2017-06-22 16:37:05 -05:00
committed by Brad King
parent ae44496e2b
commit 7ba27e364f
2 changed files with 11 additions and 0 deletions

View File

@@ -38,6 +38,11 @@ static cmVS7FlagTable cmVS140LinkFlagTable[] = {
{ "GenerateDebugInformation", "DEBUG:FASTLINK",
"Optimize for faster linking", "DebugFastLink",
cmVS7FlagTable::CaseInsensitive },
{ "GenerateDebugInformation", "DEBUG:FULL", "Optimize for debugging", "true",
cmVS7FlagTable::CaseInsensitive },
{ "GenerateDebugInformation", "DEBUG:NONE",
"Produces no debugging information", "false",
cmVS7FlagTable::CaseInsensitive },
{ "GenerateDebugInformation", "DEBUG", "Optimize for debugging", "true",
cmVS7FlagTable::CaseInsensitive },

View File

@@ -38,6 +38,12 @@ static cmVS7FlagTable cmVS141LinkFlagTable[] = {
{ "GenerateDebugInformation", "DEBUG:FASTLINK",
"Generate Debug Information optimized for faster links", "DebugFastLink",
cmVS7FlagTable::CaseInsensitive },
{ "GenerateDebugInformation", "DEBUG:FULL",
"Generate Debug Information optimized for sharing and publishing",
"DebugFull", cmVS7FlagTable::CaseInsensitive },
{ "GenerateDebugInformation", "DEBUG:NONE",
"Produces no debugging information", "false",
cmVS7FlagTable::CaseInsensitive },
{ "GenerateDebugInformation", "DEBUG", "Generate Debug Information", "true",
cmVS7FlagTable::CaseInsensitive },