summaryrefslogtreecommitdiffstats
path: root/Source/cmVS10CLFlagTable.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-09-29 20:37:06 (GMT)
committerBrad King <brad.king@kitware.com>2009-09-29 20:37:06 (GMT)
commitd6b47bee79175c33fa3992e4494c604fc6d71558 (patch)
treec5394b3eeca7aa03b862583c0298cc51bbd44536 /Source/cmVS10CLFlagTable.h
parentf321dbb17b67f7345594562a7a458fb98637eea0 (diff)
downloadCMake-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/cmVS10CLFlagTable.h')
-rw-r--r--Source/cmVS10CLFlagTable.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/cmVS10CLFlagTable.h b/Source/cmVS10CLFlagTable.h
index f1ad64c..10f2c9b 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}
};