diff options
author | Brad King <brad.king@kitware.com> | 2009-09-29 16:37:06 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-29 16:37:06 -0400 |
commit | d6b47bee79175c33fa3992e4494c604fc6d71558 (patch) | |
tree | c5394b3eeca7aa03b862583c0298cc51bbd44536 /Source/cmVS10CLFlagTable.h | |
parent | f321dbb17b67f7345594562a7a458fb98637eea0 (diff) | |
download | cmake-d6b47bee79175c33fa3992e4494c604fc6d71558.tar.gz |
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/cmVS10CLFlagTable.h')
-rw-r--r-- | Source/cmVS10CLFlagTable.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/cmVS10CLFlagTable.h b/Source/cmVS10CLFlagTable.h index f1ad64c6fc..10f2c9be6d 100644 --- a/Source/cmVS10CLFlagTable.h +++ b/Source/cmVS10CLFlagTable.h @@ -235,5 +235,24 @@ static cmVS7FlagTable cmVS10CLFlagTable[] = {"TreatSpecificWarningsAsErrors", "we", "Treat Specific Warnings As Errors", "", cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable}, + + //String Properties + // Skip [TrackerLogDirectory] - no command line Switch. + // Skip [PrecompiledHeaderFile] - no command line Switch. + {"PrecompiledHeaderOutputFile", "Fp", + "Precompiled Header Output File", + "", cmVS7FlagTable::UserValue}, + {"AssemblerListingLocation", "Fa", + "ASM List Location", + "", cmVS7FlagTable::UserValue}, + {"ObjectFileName", "Fo", + "Object File Name", + "", cmVS7FlagTable::UserValue}, + {"ProgramDataBaseFileName", "Fd", + "Program Database File Name", + "", cmVS7FlagTable::UserValue}, + // Skip [XMLDocumentationFileName] - no command line Switch. + // Skip [BrowseInformationFile] - no command line Switch. + // Skip [AdditionalOptions] - no command line Switch. {0,0,0,0,0} }; |