fpc/utils/rmwait/fpmake.pp
Michaël Van Canneyt 27fc3c95f8 * Add cthreads
2023-07-16 13:58:49 +02:00

50 lines
812 B
ObjectPascal

{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses
{$ifdef unix}
cthreads,
{$endif}
fpmkunit;
{$endif ALLPACKAGES}
procedure add_rmwait(const ADirectory: string);
Var
P : TPackage;
T : TTarget;
begin
With Installer do
begin
P:=AddPackage('utils-rmwait');
p.ShortName:='rmw';
P.Author := 'Tomas Hajny';
P.License := 'LGPL with modification';
P.HomepageURL := 'www.freepascal.org';
P.Email := '';
P.Description := 'Tool to remove (delete) file(s) with optional retries';
P.NeedLibC:= false;
P.Directory:=ADirectory;
P.Version:='3.3.1';
P.OSes:=[win32,win64,wince,os2,emx,go32v2];
T:=P.Targets.AddProgram('rmwait.pas');
end;
end;
{$ifndef ALLPACKAGES}
begin
add_rmwait('');
Installer.Run;
end.
{$endif ALLPACKAGES}