For example look at something like this:
uses
Dynlibs,
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Classes, SysUtils, CustApp
{ you can add units after this }
, Interfaces, LCLType, INIFiles,
{$IFDEF DARWIN}MacOSAll,{$ELSE}Process,{$ENDIF}{$IFNDEF WINDOWS}BaseUnix,
Unix, Dos{$ELSE}ShellAPI{$ENDIF}
;
The moment these are added in, automatically, the compiled New | Project | Console Application breaks, in ways like these:
error while loading shared libraries: libgdk-x11-2.0.so.0: cannot open shared object file: No such file or directory
On a particular Linux, other Linux'es have other errors, etc.
This is before any functions are even consumed yet from the main code body, so it seems to me dynamic loading of the widgetsets is not implemented by default.
If it is, how do I enable it?