12345678910111213141516171819202122 |
- program project1;
- {$mode objfpc}{$H+}
- uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms, Unit1, LResources, SdpoSerialLaz
- { you can add units after this };
- {$IFDEF WINDOWS}{$R project1.rc}{$ENDIF}
- begin
- Application.Title:='Serial Arduino';
- {$I project1.lrs}
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
|