diff options
author | Brad King <brad.king@kitware.com> | 2009-09-29 20:37:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-29 20:37:06 (GMT) |
commit | d6b47bee79175c33fa3992e4494c604fc6d71558 (patch) | |
tree | c5394b3eeca7aa03b862583c0298cc51bbd44536 /Source/cmVS10LibFlagTable.h | |
parent | f321dbb17b67f7345594562a7a458fb98637eea0 (diff) | |
download | CMake-d6b47bee79175c33fa3992e4494c604fc6d71558.zip CMake-d6b47bee79175c33fa3992e4494c604fc6d71558.tar.gz CMake-d6b47bee79175c33fa3992e4494c604fc6d71558.tar.bz2 |
Add StringProperty options for VS 10 flag table
The commit "cmparseMSBuildXML should output StringProperty values too"
fixed the script that generated
Source/cmVS10CLFlagTable.h
Source/cmVS10LibFlagTable.h
Source/cmVS10LinkFlagTable.h
This commit updates the files with the new output.
Diffstat (limited to 'Source/cmVS10LibFlagTable.h')
-rw-r--r-- | Source/cmVS10LibFlagTable.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/cmVS10LibFlagTable.h b/Source/cmVS10LibFlagTable.h index 5b8d98b..79aeeff 100644 --- a/Source/cmVS10LibFlagTable.h +++ b/Source/cmVS10LibFlagTable.h @@ -78,5 +78,25 @@ static cmVS7FlagTable cmVS10LibFlagTable[] = {"RemoveObjects", "REMOVE:", "Remove Objects", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + + //String Properties + {"OutputFile", "OUT:", + "Output File", + "", cmVS7FlagTable::UserValue}, + {"ModuleDefinitionFile", "DEF:", + "Module Definition File Name", + "", cmVS7FlagTable::UserValue}, + {"ForceSymbolReferences", "INCLUDE:", + "Force Symbol References", + "", cmVS7FlagTable::UserValue}, + {"DisplayLibrary", "LIST:", + "Display Library to standard output", + "", cmVS7FlagTable::UserValue}, + // Skip [MinimumRequiredVersion] - no command line Switch. + {"Name", "NAME:", + "Name", + "", cmVS7FlagTable::UserValue}, + // Skip [TrackerLogDirectory] - no command line Switch. + // Skip [AdditionalOptions] - no command line Switch. {0,0,0,0,0} }; |