fpc/tests/test/tlibrary2.pp
peter 0e8a21e84a * also win64
git-svn-id: trunk@4368 -
2006-08-06 10:15:22 +00:00

35 lines
546 B
ObjectPascal

{ %NEEDLIBRARY }
{ Test program to test linking to fpc library }
{$ifdef mswindows}
{$define supported}
{$endif mswindows}
{$ifdef Unix}
{$define supported}
{$endif Unix}
{$ifndef fpc}
{$define supported}
{$endif}
{$ifdef supported}
const
{$ifdef win32}
libname='tlibrary1.dll';
{$else}
libname='tlibrary1';
{$linklib tlibrary1}
{$endif}
procedure test;external libname name 'TestName';
begin
test;
end.
{$else not supported}
begin
Writeln('Dummy test because target does not support libraries');
end.
{$endif not supported}