diff options
author | Brad King <brad.king@kitware.com> | 2018-10-23 15:03:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-10-23 15:03:42 (GMT) |
commit | 8e56e8b28327fbe83562ad7a4e947b2275b1479d (patch) | |
tree | 8a18be667ef6cfc42edea28ff2197d646e5608f7 /Source/cmVS11CSharpFlagTable.h | |
parent | fd02538974dd952a8639d371c2c0067d30d5469a (diff) | |
download | CMake-8e56e8b28327fbe83562ad7a4e947b2275b1479d.zip CMake-8e56e8b28327fbe83562ad7a4e947b2275b1479d.tar.gz CMake-8e56e8b28327fbe83562ad7a4e947b2275b1479d.tar.bz2 |
VS: Fix CSharp support for win32res: and win32icon: flags
Add a missing `:` to these entries in the flag table. The user
value is always required and must come after the `:`.
Fixes: #18486
Diffstat (limited to 'Source/cmVS11CSharpFlagTable.h')
-rw-r--r-- | Source/cmVS11CSharpFlagTable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmVS11CSharpFlagTable.h b/Source/cmVS11CSharpFlagTable.h index e3ba83c..18b804a 100644 --- a/Source/cmVS11CSharpFlagTable.h +++ b/Source/cmVS11CSharpFlagTable.h @@ -21,8 +21,8 @@ static cmVS7FlagTable cmVS11CSharpFlagTable[] = { { "AddModules", "addmodule:", "", "", cmIDEFlagTable::SemicolonAppendable }, { "", "link", "", "", 0 }, - { "Win32Resource", "win32res", "", "", cmIDEFlagTable::UserValueRequired }, - { "ApplicationIcon", "win32icon", "", "", + { "Win32Resource", "win32res:", "", "", cmIDEFlagTable::UserValueRequired }, + { "ApplicationIcon", "win32icon:", "", "", cmIDEFlagTable::UserValueRequired }, { "ApplicationManifest", "win32manifest:", "", "", |