
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5536 8e941d3f-bd1b-0410-a28a-d453659cc2b4
32 lines
609 B
ObjectPascal
32 lines
609 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:='OPM External Update json Editor';
|
|
RequireDerivedFormResource:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
Application.Run;
|
|
end.
|
|
|