mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-15 11:01:08 +08:00

Range and overflow checking can be turned off when building a release exe to improve performance slightly. Debugging options can be turned off when building a release exe to reduce the executable file size.
41 lines
670 B
ObjectPascal
41 lines
670 B
ObjectPascal
package HeidiComponents;
|
|
|
|
{$R *.res}
|
|
{$ALIGN 8}
|
|
{$ASSERTIONS ON}
|
|
{$BOOLEVAL OFF}
|
|
{$DEBUGINFO ON}
|
|
{$EXTENDEDSYNTAX ON}
|
|
{$IMPORTEDDATA ON}
|
|
{$IOCHECKS ON}
|
|
{$LOCALSYMBOLS ON}
|
|
{$LONGSTRINGS ON}
|
|
{$OPENSTRINGS ON}
|
|
{$OPTIMIZATION ON}
|
|
{$OVERFLOWCHECKS ON}
|
|
{$RANGECHECKS ON}
|
|
{$REFERENCEINFO ON}
|
|
{$SAFEDIVIDE OFF}
|
|
{$STACKFRAMES OFF}
|
|
{$TYPEDADDRESS OFF}
|
|
{$VARSTRINGCHECKS ON}
|
|
{$WRITEABLECONST OFF}
|
|
{$MINENUMSIZE 1}
|
|
{$IMAGEBASE $400000}
|
|
{$DESCRIPTION 'HeidiSQL helper components'}
|
|
{$IMPLICITBUILD OFF}
|
|
|
|
requires
|
|
vcl,
|
|
dbrtl,
|
|
ZParseSql,
|
|
ZCore,
|
|
ZDbc,
|
|
ZPlain,
|
|
ZComponent;
|
|
|
|
contains
|
|
heidicomp in '..\..\source\heidicomp.pas';
|
|
|
|
end.
|