diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-08 21:53:47 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-09-08 21:53:47 (GMT) |
commit | 771f127fe9190376ede0c7e4c1b9a81dd4033386 (patch) | |
tree | 7313403aefd8eb925a85e171d37393aa485a2123 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 1bcf48de98bdde537a5fcc2cbd2d93b2be60c31d (diff) | |
download | CMake-771f127fe9190376ede0c7e4c1b9a81dd4033386.zip CMake-771f127fe9190376ede0c7e4c1b9a81dd4033386.tar.gz CMake-771f127fe9190376ede0c7e4c1b9a81dd4033386.tar.bz2 |
BUG: fix for 7624, vs7 flag table missing /MAP
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 149aa69..534c3a3 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -460,7 +460,8 @@ cmVS7FlagTable cmLocalVisualStudio7GeneratorLinkFlagTable[] = {"IgnoreAllDefaultLibraries", "NODEFAULTLIB", "ignore all default libs", "TRUE", 0}, {"ModuleDefinitionFile", "DEF:", "add an export def file", "", - cmVS7FlagTable::UserValue}, + cmVS7FlagTable::UserValue}, + {"GenerateMapFile", "MAP", "enable generation of map file", "TRUE", 0}, {0,0,0,0,0} }; |