Last change
on this file since 1710 was 1708, checked in by healthsevak, 9 years ago |
Added this new package for systematic environment configuration by developers. Earlier, though the component pascal file was lying in library folder but it would have been difficult for new developer to install the component without package.
|
File size:
573 bytes
|
Line | |
---|
1 | package MenuBarPackage;
|
---|
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 | {$DESCRIPTION 'MenuBar'}
|
---|
26 | {$IMPLICITBUILD ON}
|
---|
27 |
|
---|
28 | requires
|
---|
29 | rtl,
|
---|
30 | vcl;
|
---|
31 |
|
---|
32 | contains
|
---|
33 | MenuBar in 'MenuBar.pas';
|
---|
34 |
|
---|
35 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.