summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2011-01-03 15:02:16 (GMT)
committerBrad King <brad.king@kitware.com>2011-01-03 15:02:16 (GMT)
commitb29eadd8f38fcfd7b0635501f5e1429e7cb69865 (patch)
tree0c40f3a44304954cfe2a7f5d07fb3b0e09af86ef /Source/cmLocalVisualStudio7Generator.cxx
parentedff9207ed82d241077d66b20087657f74e8b5b9 (diff)
downloadCMake-b29eadd8f38fcfd7b0635501f5e1429e7cb69865.zip
CMake-b29eadd8f38fcfd7b0635501f5e1429e7cb69865.tar.gz
CMake-b29eadd8f38fcfd7b0635501f5e1429e7cb69865.tar.bz2
Map multiple /FI flags for VS < 10 (#11649)
The /FI flag may be repeated so the flag table entry needs to be marked with SemicolonAppendable. This was already the case for VS 10.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index b22c429..418b8b4 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -427,7 +427,7 @@ cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[] =
// The YX and Yu options are in a per-global-generator table because
// their values differ based on the VS IDE version.
{"ForcedIncludeFiles", "FI", "Forced include files", "",
- cmVS7FlagTable::UserValueRequired},
+ cmVS7FlagTable::UserValueRequired | cmVS7FlagTable::SemicolonAppendable},
// boolean flags
{"BufferSecurityCheck", "GS", "Buffer security check", "TRUE", 0},