mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-26 23:43:47 +02:00
24 lines
501 B
ObjectPascal
24 lines
501 B
ObjectPascal
program nonandroidtest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{.$define TEST_SQLITE}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, mainform, secondform,
|
|
{$ifdef TEST_SQLITE}sqliteform,{$ENDIF}
|
|
customdrawndrawers,
|
|
customdrawn_android;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
DefaultStyle := dsAndroid;
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.CreateForm(TForm2, Form2);
|
|
{$ifdef TEST_SQLITE}Application.CreateForm(TformSqlite, formSqlite);{$ENDIF}
|
|
Application.Run;
|
|
end.
|
|
|