ENH: do not use the link script on windows
This commit is contained in:
parent
0a89a904b3
commit
c8f35fc4ef
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue