summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-06-19 00:05:56 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-06-19 00:05:56 (GMT)
commitc8f35fc4ef561fe6a1b0ede87d36118c74f46545 (patch)
tree5a2f410fb74b0acc8741389033f6185315509dd7 /Source/cmGlobalUnixMakefileGenerator3.cxx
parent0a89a904b32978288f250d2d2eb11273d14270cc (diff)
downloadCMake-c8f35fc4ef561fe6a1b0ede87d36118c74f46545.zip
CMake-c8f35fc4ef561fe6a1b0ede87d36118c74f46545.tar.gz
CMake-c8f35fc4ef561fe6a1b0ede87d36118c74f46545.tar.bz2
ENH: do not use the link script on windows
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index 84c47eb..ebac588 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -31,7 +31,11 @@ cmGlobalUnixMakefileGenerator3::cmGlobalUnixMakefileGenerator3()
this->ToolSupportsColor = true;
this->NumberOfSourceFiles = 0;
this->NumberOfSourceFilesWritten = 0;
+#ifdef _WIN32
+ this->UseLinkScript = false;
+#else
this->UseLinkScript = true;
+#endif
}
void cmGlobalUnixMakefileGenerator3