From c8f35fc4ef561fe6a1b0ede87d36118c74f46545 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Sun, 18 Jun 2006 20:05:56 -0400 Subject: ENH: do not use the link script on windows --- Source/cmGlobalUnixMakefileGenerator3.cxx | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v0.12