lazarus/components/pochecker/Proj/pochecker.lpr
bart 368ac77838 POChecker (standalone): enable HighDPI.
git-svn-id: trunk@65127 -
2021-05-24 10:47:25 +00:00

24 lines
495 B
ObjectPascal

program pochecker;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, pocheckermain, pofamilies, resultdlg, pocheckerconsts,
graphstat, pocheckersettings, pofamilylists;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Scaled := True;
Application.Title := '';
Application.Initialize;
Application.CreateForm(TPoCheckerForm, PoCheckerForm);
Application.Run;
end.