mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-08 07:52:36 +02:00
20 lines
569 B
PHP
20 lines
569 B
PHP
StartPackage('libasync');
|
|
{$IF defined(ALLPACKAGES)}
|
|
Directory:='base/libasync';
|
|
{$ELSEIF defined(BASEPACKAGES)}
|
|
Directory:='libasync';
|
|
{$ENDIF}
|
|
OS:=[linux,netbsd,openbsd,freebsd,darwin];
|
|
T:=Targets.AddUnit('libasync');
|
|
if (Defaults.OS=linux) then
|
|
T.Directory:='unix';
|
|
if (Defaults.OS=freebsd) then
|
|
T.Directory:='unix';
|
|
if (Defaults.OS=darwin) then
|
|
T.Directory:='unix';
|
|
if (Defaults.OS=netbsd) then
|
|
T.Directory:='unix';
|
|
if (Defaults.OS=openbsd) then
|
|
T.Directory:='unix';
|
|
EndPackage;
|