project1.lpr 461 B

12345678910111213141516171819202122
  1. program project1;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms, Unit1, LResources, SdpoSerialLaz
  9. { you can add units after this };
  10. {$IFDEF WINDOWS}{$R project1.rc}{$ENDIF}
  11. begin
  12. Application.Title:='Serial Arduino';
  13. {$I project1.lrs}
  14. Application.Initialize;
  15. Application.CreateForm(TForm1, Form1);
  16. Application.Run;
  17. end.