SmartFarm/SOURCE/SmartFarmHMI/SmartFarmHMI_FMX/__history/SmartFarmHMI.dpr.~1~
2026-09-04 10:53:44 +09:00

15 lines
205 B
Plaintext

program SmartFarmHMI;
uses
System.StartUpCopy,
FMX.Forms,
UMain in 'UMain.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.