Merge topic 'vs10-stack-size'

308c5a2 VS 10: Fix CMAKE_<LANG>_STACK_SIZE implementation (#13968)
This commit is contained in:
Brad King 2013-03-05 14:10:55 -05:00 committed by CMake Topic Stage
commit 631b7b8e15
1 changed files with 1 additions and 1 deletions

View File

@ -1390,7 +1390,7 @@ cmVisualStudio10TargetGenerator::ComputeLinkOptions(std::string const& config)
std::string flags;
if(stackVal)
{
flags += " ";
flags += " /STACK:";
flags += stackVal;
}
std::string linkFlagVarBase = "CMAKE_";