Browse Source

Merge topic 'vs10-stack-size'

308c5a2 VS 10: Fix CMAKE_<LANG>_STACK_SIZE implementation (#13968)
Brad King 12 years ago
parent
commit
631b7b8e15
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmVisualStudio10TargetGenerator.cxx

+ 1 - 1
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_";