mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-15 02:54:07 +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.
39 lines
691 B
ObjectPascal
39 lines
691 B
ObjectPascal
package VirtualTreesD10;
|
|
|
|
{$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 $30400000}
|
|
{$DESCRIPTION 'Virtual Treeview runtime package'}
|
|
{$RUNONLY}
|
|
{$IMPLICITBUILD ON}
|
|
|
|
requires
|
|
vcl,
|
|
vclx;
|
|
|
|
contains
|
|
VirtualTrees in '..\..\Source\VirtualTrees.pas',
|
|
VTHeaderPopup in '..\..\Source\VTHeaderPopup.pas';
|
|
|
|
end.
|
|
|