source: trunk/FreePascalManager.lpr

Last change on this file was 9, checked in by chronos, 13 years ago
  • Fixed: Instance compilation on Linux.
File size: 740 bytes
Line 
1program FreePascalManager;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms, synapse, UMainForm,
11UInstanceOptions, UInstance, USource, UOperationProgress,
12 UMainOptions, USourceSelection
13 { you can add units after this };
14
15{$R *.res}
16
17begin
18 Application.Initialize;
19 Application.CreateForm(TMainForm, MainForm);
20 Application.CreateForm(TInstanceOptionsForm, InstanceOptionsForm);
21 Application.CreateForm(TOperationProgressForm, OperationProgressForm);
22 Application.CreateForm(TMainOptionsForm, MainOptionsForm);
23 Application.CreateForm(TSourceSelectionForm, SourceSelectionForm);
24 Application.Run;
25end.
26
Note: See TracBrowser for help on using the repository browser.