Changeset 117 for branches/generator/generator.lpr
- Timestamp:
- Nov 27, 2017, 1:09:38 PM (7 years ago)
- Location:
- branches/generator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generator
- Property svn:ignore
-
old new 2 2 generator.lps 3 3 lib 4 heaptrclog.trc
-
- Property svn:ignore
-
branches/generator/generator.lpr
r116 r117 9 9 Interfaces, // this includes the LCL widgetset 10 10 Forms, UCore, URules, Common, TemplateGenerics, UFormRule, UFormMain, 11 UFormRules, UFormRuleItem, UFormRuleItems 11 UFormRules, UFormRuleItem, UFormRuleItems, SysUtils 12 12 { you can add units after this }; 13 13 14 14 {$R *.res} 15 15 16 {$IFDEF DEBUG} 17 const 18 HeapTraceLog = 'heaptrclog.trc'; 19 {$ENDIF} 20 16 21 begin 22 {$IFDEF DEBUG} 23 // Heap trace 24 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 25 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 26 {$ENDIF} 27 28 Application.Title:='Language generator'; 17 29 RequireDerivedFormResource := True; 18 30 Application.Initialize; 19 31 Application.CreateForm(TCore, Core); 20 32 Application.CreateForm(TFormMain, FormMain); 21 Application.CreateForm(TFormRule, FormRule);22 Application.CreateForm(TFormRules, FormRules);23 Application.CreateForm(TFormRuleItem, FormRuleItem);24 Application.CreateForm(TFormRuleItems, FormRuleItems);25 33 Application.Run; 26 34 end.
Note:
See TracChangeset
for help on using the changeset viewer.