summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-12-06 13:40:18 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-12-06 13:40:18 (GMT)
commit246e9641807e817f0a6051130128d5433e1b83a6 (patch)
treec4f0c9520188836a2c6d135b52484efd953fa228 /Source/cmLocalVisualStudio7Generator.h
parent6d7ca9f9d4b78ac426650c2237a35d1ab0e2bae4 (diff)
downloadCMake-246e9641807e817f0a6051130128d5433e1b83a6.zip
CMake-246e9641807e817f0a6051130128d5433e1b83a6.tar.gz
CMake-246e9641807e817f0a6051130128d5433e1b83a6.tar.bz2
BUG: fix for bug 5455, handle nodefaultlib with more than one lib
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.h')
-rw-r--r--Source/cmLocalVisualStudio7Generator.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h
index e2820ef..c73aa7a 100644
--- a/Source/cmLocalVisualStudio7Generator.h
+++ b/Source/cmLocalVisualStudio7Generator.h
@@ -137,6 +137,10 @@ struct cmVS7FlagTable
UserIgnored = (1<<1), // ignore any user value
UserRequired = (1<<2), // match only when user value is non-empty
Continue = (1<<3), // continue looking for matching entries
+ SemicolonAppendable = (1<<4), // a flag that if specified multiple times
+ // should have its value appended to the
+ // old value with semicolons (e.g.
+ // /NODEFAULTLIB: => IgnoreDefaultLibraryNames)
UserValueIgnored = UserValue | UserIgnored,
UserValueRequired = UserValue | UserRequired