mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
22 lines
499 B
ObjectPascal
22 lines
499 B
ObjectPascal
program LuaTest;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
Unit11 in 'Unit11.pas' {Form11} ,
|
|
LuaBind.Intf in '..\..\LuaBind.Intf.pas',
|
|
LuaBind in '..\..\LuaBind.pas',
|
|
LuaBind.CustomType.DataSet in '..\..\LuaBind.CustomType.DataSet.pas',
|
|
LuaBind.DelphiObjects in '..\..\LuaBind.DelphiObjects.pas';
|
|
|
|
{$R *.res}
|
|
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm11, Form11);
|
|
Application.Run;
|
|
|
|
end.
|