program nonandroidtest; {$mode objfpc}{$H+} uses Interfaces, // this includes the LCL widgetset Forms, mainform, secondform; {$R *.res} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.CreateForm(TForm2, Form2); Application.Run; end.