source: DelphiTemplates/DelphiTemplates.dpk

Last change on this file was 4, checked in by chronos, 12 years ago
File size: 772 bytes
Line 
1package DelphiTemplates;
2
3{$R *.res}
4{$ALIGN 8}
5{$ASSERTIONS ON}
6{$BOOLEVAL OFF}
7{$DEBUGINFO ON}
8{$EXTENDEDSYNTAX ON}
9{$IMPORTEDDATA ON}
10{$IOCHECKS ON}
11{$LOCALSYMBOLS ON}
12{$LONGSTRINGS ON}
13{$OPENSTRINGS ON}
14{$OPTIMIZATION ON}
15{$OVERFLOWCHECKS OFF}
16{$RANGECHECKS OFF}
17{$REFERENCEINFO ON}
18{$SAFEDIVIDE OFF}
19{$STACKFRAMES OFF}
20{$TYPEDADDRESS OFF}
21{$VARSTRINGCHECKS ON}
22{$WRITEABLECONST OFF}
23{$MINENUMSIZE 1}
24{$IMAGEBASE $400000}
25{$IMPLICITBUILD OFF}
26{%File 'Generic\GenericList.inc'}
27{%File 'Generic\GenericListObject.inc'}
28{%File 'Generic\GenericListString.inc'}
29
30requires
31 rtl;
32
33contains
34 ListString in 'Specialized\ListString.pas',
35 ListInteger in 'Specialized\ListInteger.pas',
36 ListObject in 'Specialized\ListObject.pas';
37
38end.
Note: See TracBrowser for help on using the repository browser.