program gps_schneidetisch; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, unit1, gpxunit { you can add units after this }; {$R *.res} begin requireDerivedFormResource:=true; application.initialize; application.createForm(tForm1,form1); application.run; end.