7cc0140937
git-svn-id: http://code.remobjects.com/svn/pascalscript@52 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
77 lines
2.2 KiB
ObjectPascal
77 lines
2.2 KiB
ObjectPascal
package PascalScript_Core_D7;
|
|
|
|
{$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 OFF}
|
|
{$RANGECHECKS OFF}
|
|
{$REFERENCEINFO ON}
|
|
{$SAFEDIVIDE OFF}
|
|
{$STACKFRAMES ON}
|
|
{$TYPEDADDRESS OFF}
|
|
{$VARSTRINGCHECKS ON}
|
|
{$WRITEABLECONST OFF}
|
|
{$MINENUMSIZE 1}
|
|
{$IMAGEBASE $400000}
|
|
{$DESCRIPTION 'RemObjects Pascal Script - Core Package'}
|
|
{$DESIGNONLY}
|
|
{$IMPLICITBUILD OFF}
|
|
|
|
requires
|
|
rtl,
|
|
vcl,
|
|
dbrtl;
|
|
|
|
contains
|
|
uPSC_extctrls in 'uPSC_extctrls.pas',
|
|
uPSC_forms in 'uPSC_forms.pas',
|
|
uPSC_graphics in 'uPSC_graphics.pas',
|
|
uPSC_menus in 'uPSC_menus.pas',
|
|
uPSC_std in 'uPSC_std.pas',
|
|
uPSC_stdctrls in 'uPSC_stdctrls.pas',
|
|
uPSCompiler in 'uPSCompiler.pas',
|
|
uPSComponent in 'uPSComponent.pas',
|
|
uPSComponent_COM in 'uPSComponent_COM.pas',
|
|
uPSComponent_Controls in 'uPSComponent_Controls.pas',
|
|
uPSComponent_DB in 'uPSComponent_DB.pas',
|
|
uPSComponent_Default in 'uPSComponent_Default.pas',
|
|
uPSComponent_Forms in 'uPSComponent_Forms.pas',
|
|
uPSComponent_StdCtrls in 'uPSComponent_StdCtrls.pas',
|
|
uPSDebugger in 'uPSDebugger.pas',
|
|
uPSDisassembly in 'uPSDisassembly.pas',
|
|
uPSPreProcessor in 'uPSPreProcessor.pas',
|
|
uPSR_buttons in 'uPSR_buttons.pas',
|
|
uPSR_classes in 'uPSR_classes.pas',
|
|
uPSR_comobj in 'uPSR_comobj.pas',
|
|
uPSR_controls in 'uPSR_controls.pas',
|
|
uPSR_dateutils in 'uPSR_dateutils.pas',
|
|
uPSR_DB in 'uPSR_DB.pas',
|
|
uPSR_dll in 'uPSR_dll.pas',
|
|
uPSR_extctrls in 'uPSR_extctrls.pas',
|
|
uPSR_forms in 'uPSR_forms.pas',
|
|
uPSR_graphics in 'uPSR_graphics.pas',
|
|
uPSR_menus in 'uPSR_menus.pas',
|
|
uPSR_std in 'uPSR_std.pas',
|
|
uPSR_stdctrls in 'uPSR_stdctrls.pas',
|
|
uPSRuntime in 'uPSRuntime.pas',
|
|
uPSUtils in 'uPSUtils.pas',
|
|
uPSC_buttons in 'uPSC_buttons.pas',
|
|
uPSC_classes in 'uPSC_classes.pas',
|
|
uPSC_comobj in 'uPSC_comobj.pas',
|
|
uPSC_controls in 'uPSC_controls.pas',
|
|
uPSC_dateutils in 'uPSC_dateutils.pas',
|
|
uPSC_DB in 'uPSC_DB.pas',
|
|
uPSC_dll in 'uPSC_dll.pas',
|
|
PascalScript_Core_Reg in 'PascalScript_Core_Reg.pas';
|
|
|
|
end.
|