Changeset 205
- Timestamp:
- May 6, 2019, 2:53:22 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AcronymDecoder.lpi
r203 r205 72 72 </Item2> 73 73 <SharedMatrixOptions Count="2"> 74 <Item1 ID="541486470266" Targets="Common, TemplateGenerics,CoolTranslator" Modes="Debug" Value="-g -gl -gh -CirotR -O1"/>75 <Item2 ID="965571323456" Targets="Common, TemplateGenerics,CoolTranslator" Modes="Release" Value="-CX -XX -O3"/>74 <Item1 ID="541486470266" Targets="Common,CoolTranslator" Modes="Debug" Value="-g -gl -gh -CirotR -O1"/> 75 <Item2 ID="965571323456" Targets="Common,CoolTranslator" Modes="Release" Value="-CX -XX -O3"/> 76 76 </SharedMatrixOptions> 77 77 </BuildModes> … … 85 85 </Modes> 86 86 </RunParams> 87 <RequiredPackages Count=" 5">87 <RequiredPackages Count="4"> 88 88 <Item1> 89 89 <PackageName Value="SQLDBLaz"/> … … 94 94 </Item2> 95 95 <Item3> 96 <PackageName Value=" TemplateGenerics"/>97 <DefaultFilename Value="Packages\ TemplateGenerics\TemplateGenerics.lpk" Prefer="True"/>96 <PackageName Value="Common"/> 97 <DefaultFilename Value="Packages\Common\Common.lpk" Prefer="True"/> 98 98 </Item3> 99 99 <Item4> 100 <PackageName Value="Common"/> 101 <DefaultFilename Value="Packages\Common\Common.lpk" Prefer="True"/> 100 <PackageName Value="LCL"/> 102 101 </Item4> 103 <Item5>104 <PackageName Value="LCL"/>105 </Item5>106 102 </RequiredPackages> 107 103 <Units Count="18"> … … 272 268 <IgnoredMessages idx5024="True"/> 273 269 </CompilerMessages> 274 <CustomOptions Value="-dDEBUG"/>275 270 </Other> 276 271 </CompilerOptions> -
trunk/AcronymDecoder.lpr
r184 r205 8 8 {$ENDIF} 9 9 Interfaces, // this includes the LCL widgetset 10 Forms, UAcronym, Common, SysUtils, TemplateGenerics,10 Forms, UAcronym, Common, SysUtils, 11 11 CoolTranslator, UFormMain, UCore, UFormCheck 12 12 { you can add units after this }; … … 14 14 {$R *.res} 15 15 16 {$ IFDEF DEBUG}16 {$if declared(UseHeapTrace)} 17 17 const 18 18 HeapTraceLog = 'heaptrclog.trc'; … … 21 21 22 22 begin 23 {$IFDEF DEBUG} 24 // Heap trace 23 {$if declared(UseHeapTrace)} 25 24 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 26 25 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog); 27 26 {$ENDIF} 28 27 29 Application.Title :='Acronym Decoder';28 Application.Title:='Acronym Decoder'; 30 29 RequireDerivedFormResource := True; 31 30 Application.Initialize;
Note:
See TracChangeset
for help on using the changeset viewer.