Files
HeidiSQL/components/smdbgrid/packages/delphi10/SMDBGridComponents.dpk
rosenfield d1f1d0fb5c Enable checks and debug information.
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.
2007-09-11 16:49:44 +00:00

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.