mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-16 20:11:48 +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.
40 lines
697 B
ObjectPascal
40 lines
697 B
ObjectPascal
package SMDBGridComponents;
|
|
|
|
{$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 'SMDBGrid'}
|
|
{$IMPLICITBUILD OFF}
|
|
|
|
requires
|
|
vcl,
|
|
dbrtl,
|
|
vcldb,
|
|
bdertl;
|
|
|
|
contains
|
|
SMDBGrid in '..\..\source\SMDBGrid.pas',
|
|
SMCnst in '..\..\source\SMCnst.pas',
|
|
RXUtils in '..\..\source\RXUtils.pas';
|
|
|
|
end.
|