Changeset 145 for branches/easy compiler/project1.lpr
- Timestamp:
- Jan 17, 2018, 1:11:56 PM (7 years ago)
- Location:
- branches/easy compiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/easy compiler
- Property svn:ignore
-
old new 2 2 *.exe 3 3 *.lps 4 heaptrclog.trc
-
- Property svn:ignore
-
branches/easy compiler/project1.lpr
r140 r145 9 9 Interfaces, // this includes the LCL widgetset 10 10 Forms, UFormMain, UCompiler, USourceCode, UTargetCode, USourceExecutor, USourceGenerator 11 { you can add units after this } ;12 11 { you can add units after this }, 12 SysUtils; 13 13 {$R *.res} 14 14 15 {$IFDEF DEBUG} 16 const 17 HeapTraceLog = 'heaptrclog.trc'; 18 {$ENDIF} 19 20 15 21 begin 22 {$IFDEF DEBUG} 23 // Heap trace 24 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 25 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 26 {$ENDIF} 27 16 28 RequireDerivedFormResource:=True; 17 29 Application.Initialize;
Note:
See TracChangeset
for help on using the changeset viewer.