ENH: do not use the link script on windows

This commit is contained in:
Bill Hoffman 2006-06-18 20:05:56 -04:00
parent 0a89a904b3
commit c8f35fc4ef
1 changed files with 4 additions and 0 deletions

View File

@ -31,7 +31,11 @@ cmGlobalUnixMakefileGenerator3::cmGlobalUnixMakefileGenerator3()
this->ToolSupportsColor = true; this->ToolSupportsColor = true;
this->NumberOfSourceFiles = 0; this->NumberOfSourceFiles = 0;
this->NumberOfSourceFilesWritten = 0; this->NumberOfSourceFilesWritten = 0;
#ifdef _WIN32
this->UseLinkScript = false;
#else
this->UseLinkScript = true; this->UseLinkScript = true;
#endif
} }
void cmGlobalUnixMakefileGenerator3 void cmGlobalUnixMakefileGenerator3