summaryrefslogtreecommitdiffstats
path: root/Templates
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-01-08 18:33:00 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-01-08 18:33:00 (GMT)
commit6dc78a2315d5538d562b0270276c88c0fdcb147b (patch)
tree8a38f2b0611c1fed9fa23a3051fd1afab28679bd /Templates
parent1a16fee4302d30e3ac41c6be807720615e85da4e (diff)
downloadCMake-6dc78a2315d5538d562b0270276c88c0fdcb147b.zip
CMake-6dc78a2315d5538d562b0270276c88c0fdcb147b.tar.gz
CMake-6dc78a2315d5538d562b0270276c88c0fdcb147b.tar.bz2
ENH: add CMAKE_EXTRA_LINK_FLAGS to dsp generator
Diffstat (limited to 'Templates')
-rw-r--r--Templates/CMakeWindowsSystemConfig.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/Templates/CMakeWindowsSystemConfig.cmake b/Templates/CMakeWindowsSystemConfig.cmake
index ec093dd..07e0c88 100644
--- a/Templates/CMakeWindowsSystemConfig.cmake
+++ b/Templates/CMakeWindowsSystemConfig.cmake
@@ -19,6 +19,9 @@ SET (CMAKE_CXX_FLAGS_DEBUG "/MDd /Zi /Od /GZ" CACHE STRING
SET (CMAKE_CXX_FLAGS "/W3 /Zm1000 /GX /GR" CACHE STRING
"Flags used by the compiler during all build types, /GX /GR are for exceptions and rtti in VC++, /Zm1000 increases the compiler's memory allocation to support ANSI C++/stdlib")
+SET (CMAKE_EXTRA_LINK_FLAGS "/STACK:10000000" CACHE STRING
+ "Extra flags added to the link line for creation of exe and dlls.")
+
SET (CMAKE_USE_WIN32_THREADS 1 CACHE BOOL
"Use the win32 thread library")
@@ -47,6 +50,7 @@ CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_DEBUG
CMAKE_USE_WIN32_THREADS
CMAKE_MAKE_PROGRAM
+CMAKE_EXTRA_LINK_FLAGS
)