source: trunk/LinuxBuilder.lpr

Last change on this file was 13, checked in by chronos, 10 years ago
  • Added: Basic parsing of "Depends on" expressions.
File size: 657 bytes
Line 
1program LinuxBuilder;
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, UFormMain, UKConfig, UFormList, UFormLog, UFormCompare, UFormSearch,
11 Common, TemplateGenerics
12 { you can add units after this };
13
14{$R *.res}
15
16begin
17 RequireDerivedFormResource := True;
18 Application.Initialize;
19 Application.CreateForm(TFormMain, FormMain);
20 Application.CreateForm(TFormList, FormList);
21 Application.CreateForm(TFormLog, FormLog);
22 Application.CreateForm(TFormCompare, FormCompare);
23 Application.CreateForm(TFormSearch, FormSearch);
24 Application.Run;
25end.
26
Note: See TracBrowser for help on using the repository browser.