mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-25 01:19:10 +02:00
24 lines
413 B
ObjectPascal
24 lines
413 B
ObjectPascal
program confcleandirs;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here },
|
|
sysutils,
|
|
dircleaner, frmmain, frmlog;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='Configure directory cleaner';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|