Builds a DLL by linking together one or more libraries.
DLL( alias ) ; (optional) Alias
{
.Linker ; Linker executable to use
.LinkerOutput ; Ouput from linker
.LinkerOptions ; Options to pass to linker
.Libraries ; Libraries to link into DLL
.LinkerLinkObjects ; (optional) Link objects used to make libs instead of libs (default false)
.LinkerAssemblyResources ; (optional) List of assembly resources to use with %3
}
Build-Time Substitutions
- LinkerOptions
- %1 - Input file(s) for the link, as specified by the 'Libraries' parameter.
- %2 - Output assembly as specified by 'LinkerOutput'.
- %3 - AssemblyResources as specified in 'LinkerAssemblyResources'. For use with /ASSEMBLYRESOURCE"%3" (MSVC Only)