git-svn-id: https://192.168.0.254/svn/Componentes.Internos.GUISDK/trunk@22 e3f7d858-3362-1a4e-b49c-1b1bd96e4488
42 lines
799 B
ObjectPascal
42 lines
799 B
ObjectPascal
package GUISDK_D12R;
|
|
|
|
{$R *.res}
|
|
{$ALIGN 8}
|
|
{$ASSERTIONS ON}
|
|
{$BOOLEVAL OFF}
|
|
{$DEBUGINFO OFF}
|
|
{$EXTENDEDSYNTAX ON}
|
|
{$IMPORTEDDATA ON}
|
|
{$IOCHECKS ON}
|
|
{$LOCALSYMBOLS OFF}
|
|
{$LONGSTRINGS ON}
|
|
{$OPENSTRINGS ON}
|
|
{$OPTIMIZATION ON}
|
|
{$OVERFLOWCHECKS OFF}
|
|
{$RANGECHECKS OFF}
|
|
{$REFERENCEINFO OFF}
|
|
{$SAFEDIVIDE OFF}
|
|
{$STACKFRAMES OFF}
|
|
{$TYPEDADDRESS OFF}
|
|
{$VARSTRINGCHECKS ON}
|
|
{$WRITEABLECONST OFF}
|
|
{$MINENUMSIZE 1}
|
|
{$IMAGEBASE $400000}
|
|
{$DESCRIPTION 'GUI SDK para Delphi 2009 (Runtime)'}
|
|
{$RUNONLY}
|
|
{$IMPLICITBUILD OFF}
|
|
{$DEFINE RELEASE}
|
|
|
|
requires
|
|
vcl,
|
|
rtl,
|
|
designide;
|
|
|
|
contains
|
|
uCustomView in '..\Source\uCustomView.pas',
|
|
uCustomEditor in '..\Source\uCustomEditor.pas',
|
|
uGUIBase in '..\Source\uGUIBase.pas',
|
|
uGUIUtils in '..\Source\uGUIUtils.pas';
|
|
|
|
end.
|