source upload

This commit is contained in:
Razor12911
2022-01-17 22:16:47 +02:00
parent 12936d065b
commit 098e8c48de
1778 changed files with 1206749 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
program mORMotRESTcl;
{$ifdef Linux}
{$ifdef FPC_CROSSCOMPILING}
{$ifdef CPUARM}
{$linklib GLESv2}
{$endif}
{$linklib libc_nonshared.a}
{$endif}
{$endif}
{$I Synopse.inc}
uses
{$IFDEF FPC}
Interfaces,
{$ENDIF }
Forms,
{$ifndef DELPHI5OROLDER}
mORMotRESTFPCInterfaces,
{$endif}
{$ifdef COMPUTEFPCINTERFACES}
SynCommons,
mORMotWrappers,
{$endif}
RestClientFormUnit in 'RestClientFormUnit.pas' {Form1} ,
RestMethodsInterfaceUnit in 'RestMethodsInterfaceUnit.pas',
RestClientUnit in 'RestClientUnit.pas'
{$ifndef FPC}
,Vcl.Themes
,Vcl.Styles
{$endif}
;
{$ifndef FPC}
{$R *.res}
{$endif}
begin
{$IFDEF DEBUG}
ReportMemoryLeaksOnShutdown := True;
{$ENDIF}
Application.Initialize;
{$ifdef MSWINDOWS}
Application.MainFormOnTaskbar := True;
{$endif}
{$ifndef FPC}
TStyleManager.TrySetStyle('Turquoise Gray');
{$endif}
Application.CreateForm(TForm1, Form1);
Application.Run;
{$ifdef COMPUTEFPCINTERFACES}
ChDir(ExeVersion.ProgramFilePath);
ComputeFPCInterfacesUnit(
['..\..\..\..\..\..\CrossPlatform\templates'],
'..\..\mORMotRESTFPCInterfaces.pas');
{$endif}
end.