program GHTyroFPC; {$mode objfpc}{$H+} uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Interfaces, // this includes the LCL widgetset Forms, MainWindow, DialoguesCommuns, GHTyroTypes, GPFunctions, CadreGraphique2D, UnitTyrolienne, UnitProfilTerrain, rxnew, dlgInfosBarre, unitProfilVitesses { you can add units after this }; {$R *.res} begin RequireDerivedFormResource := True; Application.Initialize; Application.CreateForm(TMainFrm, MainFrm); Application.CreateForm(TfrmInfosBarre, frmInfosBarre); Application.Run; end.