VS: Fix linking of Fortran-only DLL projects (#10803)
Emit the LinkDLL attribute of VFLinkerTool for Fortran DLLs.
This commit is contained in:
parent
ddf0de132b
commit
f661b95333
|
@ -1011,7 +1011,12 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
|
||||||
temp += "/";
|
temp += "/";
|
||||||
temp += targetNameImport;
|
temp += targetNameImport;
|
||||||
fout << "\t\t\t\tImportLibrary=\""
|
fout << "\t\t\t\tImportLibrary=\""
|
||||||
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"/>\n";
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"";
|
||||||
|
if(this->FortranProject)
|
||||||
|
{
|
||||||
|
fout << "\n\t\t\t\tLinkDLL=\"true\"";
|
||||||
|
}
|
||||||
|
fout << "/>\n";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case cmTarget::EXECUTABLE:
|
case cmTarget::EXECUTABLE:
|
||||||
|
|
Loading…
Reference in New Issue