git-svn-id: https://192.168.0.254/svn/Componentes.Internos.PluginSDK/trunk@8 e72b1707-40e4-cb4a-951e-f3997140195a
41 lines
841 B
ObjectPascal
41 lines
841 B
ObjectPascal
package PluginSDK_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 'PluginSDK for Delphi 2009 (Runtime)'}
|
|
{$RUNONLY}
|
|
{$IMPLICITBUILD OFF}
|
|
{$DEFINE RELEASE}
|
|
|
|
requires
|
|
rtl,
|
|
vcl;
|
|
|
|
contains
|
|
uHostManager in '..\Source\uHostManager.pas',
|
|
uInterfaces in '..\Source\uInterfaces.pas',
|
|
uModuleMenu in '..\Source\uModuleMenu.pas',
|
|
uModuleController in '..\Source\uModuleController.pas' {ModuleController: TDataModule};
|
|
|
|
end.
|