diff options
author | Brad King <brad.king@kitware.com> | 2021-07-14 17:31:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-07-15 17:12:53 (GMT) |
commit | d3175a6079655a07174810ba5f6d344702cd6c09 (patch) | |
tree | fc8d570cf985f0f5b25b49ab91651cfc5b14f88a /Templates | |
parent | 9e10045552bb28f632bae592636662253c87be80 (diff) | |
download | CMake-d3175a6079655a07174810ba5f6d344702cd6c09.zip CMake-d3175a6079655a07174810ba5f6d344702cd6c09.tar.gz CMake-d3175a6079655a07174810ba5f6d344702cd6c09.tar.bz2 |
VS: Map the link `/debug` flag for v143
Apply the changes from commit 533f95c847 (VS: Map the link `/debug` flag
for v142, 2019-01-24, v3.14.0-rc1~74^2~3) to the v143 flag table.
Diffstat (limited to 'Templates')
-rw-r--r-- | Templates/MSBuild/FlagTables/v143_Link.json | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/Templates/MSBuild/FlagTables/v143_Link.json b/Templates/MSBuild/FlagTables/v143_Link.json index 7822187..c52d01e 100644 --- a/Templates/MSBuild/FlagTables/v143_Link.json +++ b/Templates/MSBuild/FlagTables/v143_Link.json @@ -120,31 +120,39 @@ }, { "name": "GenerateDebugInformation", - "switch": "", - "comment": "No", - "value": "false", - "flags": [] - }, - { - "name": "GenerateDebugInformation", "switch": "DEBUG", "comment": "Generate Debug Information", "value": "true", - "flags": [] + "flags": [ + "CaseInsensitive" + ] }, { "name": "GenerateDebugInformation", "switch": "DEBUG:FASTLINK", "comment": "Generate Debug Information optimized for faster links", "value": "DebugFastLink", - "flags": [] + "flags": [ + "CaseInsensitive" + ] }, { "name": "GenerateDebugInformation", "switch": "DEBUG:FULL", "comment": "Generate Debug Information optimized for sharing and publishing", "value": "DebugFull", - "flags": [] + "flags": [ + "CaseInsensitive" + ] + }, + { + "name": "GenerateDebugInformation", + "switch": "DEBUG:NONE", + "comment": "Produces no debugging information", + "value": "false", + "flags": [ + "CaseInsensitive" + ] }, { "name": "SubSystem", |