summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-03-05 19:10:55 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-03-05 19:10:55 (GMT)
commit631b7b8e15a0dd6169fdc2583198ff73a03551d8 (patch)
tree07365dd9397271d28d5eea3332ccda71df28dc32 /Source
parent4871960ea0772764774161d485d3f5b7d62367ac (diff)
parent308c5a2670a7551c00637d481c111ef345d3ae3c (diff)
downloadCMake-631b7b8e15a0dd6169fdc2583198ff73a03551d8.zip
CMake-631b7b8e15a0dd6169fdc2583198ff73a03551d8.tar.gz
CMake-631b7b8e15a0dd6169fdc2583198ff73a03551d8.tar.bz2
Merge topic 'vs10-stack-size'
308c5a2 VS 10: Fix CMAKE_<LANG>_STACK_SIZE implementation (#13968)
Diffstat (limited to 'Source')
-rw-r--r--Source/cmVisualStudio10TargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx
index 171ed9a..f4984c7 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -1390,7 +1390,7 @@ cmVisualStudio10TargetGenerator::ComputeLinkOptions(std::string const& config)
std::string flags;
if(stackVal)
{
- flags += " ";
+ flags += " /STACK:";
flags += stackVal;
}
std::string linkFlagVarBase = "CMAKE_";