You've already forked lazarus-ccr
32 lines
610 B
ObjectPascal
32 lines
610 B
ObjectPascal
![]() |
program jsonpackage;
|
||
|
{$ifdef Linux}
|
||
|
{$ifdef FPC_CROSSCOMPILING}
|
||
|
{$ifdef CPUARM}
|
||
|
//if GUI, then uncomment
|
||
|
//{$linklib GLESv2}
|
||
|
{$endif}
|
||
|
{$linklib libc_nonshared.a}
|
||
|
{$endif}
|
||
|
{$endif}
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
uses
|
||
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||
|
cthreads,
|
||
|
{$ENDIF}{$ENDIF}
|
||
|
Interfaces, // this includes the LCL widgetset
|
||
|
Forms, umain
|
||
|
{ you can add units after this };
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Title:='External OPM JSON package Editor';
|
||
|
RequireDerivedFormResource:=True;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TfrmMain, frmMain);
|
||
|
Application.Run;
|
||
|
end.
|
||
|
|