source: branches/xpascal/xpascal.lpr

Last change on this file was 231, checked in by chronos, 11 months ago
  • Modified: SourceNode classes moved into separate unit.
File size: 787 bytes
Line 
1program xpascal;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, SysUtils, // this includes the LCL widgetset
10 Forms, Parser, Tokenizer, Source, Executor, Interpreter, Generator,
11 FormMessages, FormSource, Optimizer, FormOutput, FormMain,
12 ParserPascal, Tests, FormConsole, SourceNode;
13
14{$R *.res}
15
16{$if declared(UseHeapTrace)}
17const
18 HeapTraceLog = 'heaptrclog.trc';
19{$ENDIF}
20
21begin
22 {$if declared(UseHeapTrace)}
23 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
24 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
25 {$ENDIF}
26 RequireDerivedFormResource:=True;
27 Application.Scaled:=True;
28 Application.Initialize;
29 Application.CreateForm(TFormMain, FormMain.FormMain);
30 Application.Run;
31end.
32
Note: See TracBrowser for help on using the repository browser.