0: Weaver files
git-svn-id: http://code.remobjects.com/svn/pascalscript@158 5c9d2617-0215-0410-a2ee-e80e04d1c6d8
This commit is contained in:
parent
5635d43916
commit
6e0201ed9f
50
Source/BuildPackages_D14.groupproj
Normal file
50
Source/BuildPackages_D14.groupproj
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ProjectGuid>{301d154e-a852-4e08-89a3-6bfb2774fb38}</ProjectGuid>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Projects Include="PascalScript_Core_D14.dproj">
|
||||||
|
<Dependencies/>
|
||||||
|
</Projects>
|
||||||
|
<Projects Include="PascalScript_RO_D14.dproj">
|
||||||
|
<Dependencies/>
|
||||||
|
</Projects>
|
||||||
|
</ItemGroup>
|
||||||
|
<ProjectExtensions>
|
||||||
|
<Borland.Personality>Default.Personality.12</Borland.Personality>
|
||||||
|
<Borland.ProjectType/>
|
||||||
|
<BorlandProject>
|
||||||
|
<BorlandProject>
|
||||||
|
<Default.Personality/>
|
||||||
|
</BorlandProject>
|
||||||
|
</BorlandProject>
|
||||||
|
</ProjectExtensions>
|
||||||
|
<Target Name="PascalScript_Core_D14">
|
||||||
|
<MSBuild Projects="PascalScript_Core_D14.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="PascalScript_Core_D14:Clean">
|
||||||
|
<MSBuild Targets="Clean" Projects="PascalScript_Core_D14.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="PascalScript_Core_D14:Make">
|
||||||
|
<MSBuild Targets="Make" Projects="PascalScript_Core_D14.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="PascalScript_RO_D14">
|
||||||
|
<MSBuild Projects="PascalScript_RO_D14.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="PascalScript_RO_D14:Clean">
|
||||||
|
<MSBuild Targets="Clean" Projects="PascalScript_RO_D14.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="PascalScript_RO_D14:Make">
|
||||||
|
<MSBuild Targets="Make" Projects="PascalScript_RO_D14.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="Build">
|
||||||
|
<CallTarget Targets="PascalScript_Core_D14;PascalScript_RO_D14"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="Clean">
|
||||||
|
<CallTarget Targets="PascalScript_Core_D14:Clean;PascalScript_RO_D14:Clean"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="Make">
|
||||||
|
<CallTarget Targets="PascalScript_Core_D14:Make;PascalScript_RO_D14:Make"/>
|
||||||
|
</Target>
|
||||||
|
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
|
||||||
|
</Project>
|
152
Source/PascalScript_Core_D14.dpk
Normal file
152
Source/PascalScript_Core_D14.dpk
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
package PascalScript_Core_D14;
|
||||||
|
|
||||||
|
{$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.
|
||||||
|
package PascalScript_Core_D14;
|
||||||
|
|
||||||
|
{$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.
|
127
Source/PascalScript_Core_D14.dproj
Normal file
127
Source/PascalScript_Core_D14.dproj
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ProjectGuid>{634be604-b73a-4b3d-bc81-719c905199e6}</ProjectGuid>
|
||||||
|
<MainSource>PascalScript_Core_D14.dpk</MainSource>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
|
||||||
|
<DCC_DependencyCheckOutputName>..\Dcu\D12\PascalScript_Core_D12.bpl</DCC_DependencyCheckOutputName>
|
||||||
|
<ProjectVersion>11.1</ProjectVersion>
|
||||||
|
<Config Condition="'$(Config)'==''">Base</Config>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||||
|
<Base>true</Base>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Base)'!=''">
|
||||||
|
<DCC_SymbolReferenceInfo>1</DCC_SymbolReferenceInfo>
|
||||||
|
<DCC_Description>RemObjects Pascal Script - Core Package</DCC_Description>
|
||||||
|
<DCC_DependencyCheckOutputName>..\Dcu\D14\PascalScript_Core_D14.bpl</DCC_DependencyCheckOutputName>
|
||||||
|
<DCC_UnitSearchPath>..\Dcu\D14;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||||
|
<DCC_BplOutput>..\Dcu\D14</DCC_BplOutput>
|
||||||
|
<DCC_DcuOutput>..\Dcu\D14</DCC_DcuOutput>
|
||||||
|
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||||
|
<GenDll>true</GenDll>
|
||||||
|
<DCC_DcpOutput>..\Dcu\D14</DCC_DcpOutput>
|
||||||
|
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||||
|
<DesignOnlyPackage>true</DesignOnlyPackage>
|
||||||
|
<GenPackage>true</GenPackage>
|
||||||
|
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<DelphiCompile Include="PascalScript_Core_D14.dpk">
|
||||||
|
<MainSource>MainSource</MainSource>
|
||||||
|
</DelphiCompile>
|
||||||
|
<DCCReference Include="rtl.dcp"/>
|
||||||
|
<DCCReference Include="vcl.dcp"/>
|
||||||
|
<DCCReference Include="dbrtl.dcp"/>
|
||||||
|
<DCCReference Include="uPSC_extctrls.pas"/>
|
||||||
|
<DCCReference Include="uPSC_forms.pas"/>
|
||||||
|
<DCCReference Include="uPSC_graphics.pas"/>
|
||||||
|
<DCCReference Include="uPSC_menus.pas"/>
|
||||||
|
<DCCReference Include="uPSC_std.pas"/>
|
||||||
|
<DCCReference Include="uPSC_stdctrls.pas"/>
|
||||||
|
<DCCReference Include="uPSCompiler.pas"/>
|
||||||
|
<DCCReference Include="uPSComponent.pas"/>
|
||||||
|
<DCCReference Include="uPSComponent_COM.pas"/>
|
||||||
|
<DCCReference Include="uPSComponent_Controls.pas"/>
|
||||||
|
<DCCReference Include="uPSComponent_DB.pas"/>
|
||||||
|
<DCCReference Include="uPSComponent_Default.pas"/>
|
||||||
|
<DCCReference Include="uPSComponent_Forms.pas"/>
|
||||||
|
<DCCReference Include="uPSComponent_StdCtrls.pas"/>
|
||||||
|
<DCCReference Include="uPSDebugger.pas"/>
|
||||||
|
<DCCReference Include="uPSDisassembly.pas"/>
|
||||||
|
<DCCReference Include="uPSPreProcessor.pas"/>
|
||||||
|
<DCCReference Include="uPSR_buttons.pas"/>
|
||||||
|
<DCCReference Include="uPSR_classes.pas"/>
|
||||||
|
<DCCReference Include="uPSR_comobj.pas"/>
|
||||||
|
<DCCReference Include="uPSR_controls.pas"/>
|
||||||
|
<DCCReference Include="uPSR_dateutils.pas"/>
|
||||||
|
<DCCReference Include="uPSR_DB.pas"/>
|
||||||
|
<DCCReference Include="uPSR_dll.pas"/>
|
||||||
|
<DCCReference Include="uPSR_extctrls.pas"/>
|
||||||
|
<DCCReference Include="uPSR_forms.pas"/>
|
||||||
|
<DCCReference Include="uPSR_graphics.pas"/>
|
||||||
|
<DCCReference Include="uPSR_menus.pas"/>
|
||||||
|
<DCCReference Include="uPSR_std.pas"/>
|
||||||
|
<DCCReference Include="uPSR_stdctrls.pas"/>
|
||||||
|
<DCCReference Include="uPSRuntime.pas"/>
|
||||||
|
<DCCReference Include="uPSUtils.pas"/>
|
||||||
|
<DCCReference Include="uPSC_buttons.pas"/>
|
||||||
|
<DCCReference Include="uPSC_classes.pas"/>
|
||||||
|
<DCCReference Include="uPSC_comobj.pas"/>
|
||||||
|
<DCCReference Include="uPSC_controls.pas"/>
|
||||||
|
<DCCReference Include="uPSC_dateutils.pas"/>
|
||||||
|
<DCCReference Include="uPSC_DB.pas"/>
|
||||||
|
<DCCReference Include="uPSC_dll.pas"/>
|
||||||
|
<DCCReference Include="PascalScript_Core_Reg.pas"/>
|
||||||
|
<BuildConfiguration Include="Base">
|
||||||
|
<Key>Base</Key>
|
||||||
|
</BuildConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
||||||
|
<ProjectExtensions>
|
||||||
|
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||||
|
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||||
|
<BorlandProject>
|
||||||
|
<Delphi.Personality>
|
||||||
|
<Parameters>
|
||||||
|
<Parameters Name="UseLauncher">False</Parameters>
|
||||||
|
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||||
|
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||||
|
</Parameters>
|
||||||
|
<VersionInfo>
|
||||||
|
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||||
|
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||||
|
<VersionInfo Name="MajorVer">3</VersionInfo>
|
||||||
|
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Release">29</VersionInfo>
|
||||||
|
<VersionInfo Name="Build">673</VersionInfo>
|
||||||
|
<VersionInfo Name="Debug">False</VersionInfo>
|
||||||
|
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Special">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Private">False</VersionInfo>
|
||||||
|
<VersionInfo Name="DLL">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||||
|
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||||
|
</VersionInfo>
|
||||||
|
<VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompanyName">RemObjects Software</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileDescription"/>
|
||||||
|
<VersionInfoKeys Name="FileVersion">3.0.29.673</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="InternalName"/>
|
||||||
|
<VersionInfoKeys Name="LegalCopyright"/>
|
||||||
|
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||||
|
<VersionInfoKeys Name="OriginalFilename"/>
|
||||||
|
<VersionInfoKeys Name="ProductName">Pascal Script</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductVersion">3.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompileDate">Friday, March 21, 2008 1:24 PM</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="Compile Date">Monday, February 28, 2005 3:33 PM</VersionInfoKeys>
|
||||||
|
</VersionInfoKeys>
|
||||||
|
<Source>
|
||||||
|
<Source Name="MainSource">PascalScript_Core_D14.dpk</Source>
|
||||||
|
</Source>
|
||||||
|
</Delphi.Personality>
|
||||||
|
</BorlandProject>
|
||||||
|
<ProjectFileVersion>12</ProjectFileVersion>
|
||||||
|
</ProjectExtensions>
|
||||||
|
</Project>
|
BIN
Source/PascalScript_Core_D14.res
Normal file
BIN
Source/PascalScript_Core_D14.res
Normal file
Binary file not shown.
Binary file not shown.
45
Source/PascalScript_RO_D14.dpk
Normal file
45
Source/PascalScript_RO_D14.dpk
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
package PascalScript_RO_D14;
|
||||||
|
|
||||||
|
{$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 - RemObjects SDK 5.0 Integration'}
|
||||||
|
{$IMPLICITBUILD OFF}
|
||||||
|
|
||||||
|
requires
|
||||||
|
rtl,
|
||||||
|
IndyCore,
|
||||||
|
IndySystem,
|
||||||
|
IndyProtocols,
|
||||||
|
PascalScript_Core_D14,
|
||||||
|
RemObjects_Core_D14,
|
||||||
|
RemObjects_Indy_D14,
|
||||||
|
dbrtl,
|
||||||
|
vcl,
|
||||||
|
vclx;
|
||||||
|
|
||||||
|
contains
|
||||||
|
PascalScript_RO_Reg in 'PascalScript_RO_Reg.pas',
|
||||||
|
uROPSServerLink in 'uROPSServerLink.pas',
|
||||||
|
uROPSImports in 'uROPSImports.pas';
|
||||||
|
|
||||||
|
end.
|
101
Source/PascalScript_RO_D14.dproj
Normal file
101
Source/PascalScript_RO_D14.dproj
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ProjectGuid>{0eefdf9b-7853-40e5-9b29-b631f51beeda}</ProjectGuid>
|
||||||
|
<MainSource>PascalScript_RO_D14.dpk</MainSource>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
|
||||||
|
<DCC_DependencyCheckOutputName>..\Dcu\D12\PascalScript_RO_D12.bpl</DCC_DependencyCheckOutputName>
|
||||||
|
<ProjectVersion>11.1</ProjectVersion>
|
||||||
|
<Config Condition="'$(Config)'==''">Base</Config>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||||
|
<Base>true</Base>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Base)'!=''">
|
||||||
|
<DCC_SymbolReferenceInfo>1</DCC_SymbolReferenceInfo>
|
||||||
|
<DCC_Description>RemObjects Pascal Script - RemObjects SDK 5.0 Integration</DCC_Description>
|
||||||
|
<DCC_DependencyCheckOutputName>..\Dcu\D14\PascalScript_RO_D14.bpl</DCC_DependencyCheckOutputName>
|
||||||
|
<DCC_UnitSearchPath>..\Dcu\D14;..\..\RemObjects SDK for Dephi\Dcu\D14;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
||||||
|
<DCC_BplOutput>..\Dcu\D14</DCC_BplOutput>
|
||||||
|
<DCC_DcuOutput>..\Dcu\D14</DCC_DcuOutput>
|
||||||
|
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
|
||||||
|
<GenDll>true</GenDll>
|
||||||
|
<DCC_DcpOutput>..\Dcu\D14</DCC_DcpOutput>
|
||||||
|
<DCC_ImageBase>00400000</DCC_ImageBase>
|
||||||
|
<DesignOnlyPackage>false</DesignOnlyPackage>
|
||||||
|
<GenPackage>true</GenPackage>
|
||||||
|
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<DelphiCompile Include="PascalScript_RO_D14.dpk">
|
||||||
|
<MainSource>MainSource</MainSource>
|
||||||
|
</DelphiCompile>
|
||||||
|
<DCCReference Include="rtl.dcp"/>
|
||||||
|
<DCCReference Include="IndyCore.dcp"/>
|
||||||
|
<DCCReference Include="IndySystem.dcp"/>
|
||||||
|
<DCCReference Include="IndyProtocols.dcp"/>
|
||||||
|
<DCCReference Include="PascalScript_Core_D14.dcp"/>
|
||||||
|
<DCCReference Include="RemObjects_Core_D14.dcp"/>
|
||||||
|
<DCCReference Include="RemObjects_Indy_D1.dcp"/>
|
||||||
|
<DCCReference Include="dbrtl.dcp"/>
|
||||||
|
<DCCReference Include="vcl.dcp"/>
|
||||||
|
<DCCReference Include="vclx.dcp"/>
|
||||||
|
<DCCReference Include="PascalScript_RO_Reg.pas"/>
|
||||||
|
<DCCReference Include="uROPSServerLink.pas"/>
|
||||||
|
<DCCReference Include="uROPSImports.pas"/>
|
||||||
|
<DCCReference Include="RemObjects_Indy_D12.dcp"/>
|
||||||
|
<DCCReference Include="RemObjects_Core_D1.dcp"/>
|
||||||
|
<DCCReference Include="RemObjects_Core_D12.dcp"/>
|
||||||
|
<DCCReference Include="PascalScript_Core_D1.dcp"/>
|
||||||
|
<DCCReference Include="PascalScript_Core_D12.dcp"/>
|
||||||
|
<BuildConfiguration Include="Base">
|
||||||
|
<Key>Base</Key>
|
||||||
|
</BuildConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
||||||
|
<ProjectExtensions>
|
||||||
|
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||||
|
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||||
|
<BorlandProject>
|
||||||
|
<Delphi.Personality>
|
||||||
|
<Parameters>
|
||||||
|
<Parameters Name="UseLauncher">False</Parameters>
|
||||||
|
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||||
|
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||||
|
</Parameters>
|
||||||
|
<VersionInfo>
|
||||||
|
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||||
|
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||||
|
<VersionInfo Name="MajorVer">3</VersionInfo>
|
||||||
|
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Release">6</VersionInfo>
|
||||||
|
<VersionInfo Name="Build">442</VersionInfo>
|
||||||
|
<VersionInfo Name="Debug">False</VersionInfo>
|
||||||
|
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Special">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Private">False</VersionInfo>
|
||||||
|
<VersionInfo Name="DLL">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||||
|
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||||
|
</VersionInfo>
|
||||||
|
<VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompanyName">RemObjects Software</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileDescription"/>
|
||||||
|
<VersionInfoKeys Name="FileVersion">3.0.6.442</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="InternalName"/>
|
||||||
|
<VersionInfoKeys Name="LegalCopyright"/>
|
||||||
|
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||||
|
<VersionInfoKeys Name="OriginalFilename"/>
|
||||||
|
<VersionInfoKeys Name="ProductName">Pascal Script</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductVersion">3.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompileDate">Tuesday, March 21, 2006 1:32 PM</VersionInfoKeys>
|
||||||
|
</VersionInfoKeys>
|
||||||
|
<Source>
|
||||||
|
<Source Name="MainSource">PascalScript_RO_D14.dpk</Source>
|
||||||
|
</Source>
|
||||||
|
</Delphi.Personality>
|
||||||
|
</BorlandProject>
|
||||||
|
<ProjectFileVersion>12</ProjectFileVersion>
|
||||||
|
</ProjectExtensions>
|
||||||
|
</Project>
|
BIN
Source/PascalScript_RO_D14.res
Normal file
BIN
Source/PascalScript_RO_D14.res
Normal file
Binary file not shown.
@ -149,7 +149,7 @@
|
|||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
{ defines for Delphi 1.0 thru 7.0 }
|
{ defines for Delphi 1.0 thru 7.0 }
|
||||||
{$IFNDEF LINUX}
|
{$IFDEF MSWINDOWS}
|
||||||
|
|
||||||
{ defines for Delphi 1.0 }
|
{ defines for Delphi 1.0 }
|
||||||
{$IFDEF VER80}
|
{$IFDEF VER80}
|
||||||
@ -364,10 +364,44 @@
|
|||||||
{$DEFINE BDS4UP}
|
{$DEFINE BDS4UP}
|
||||||
{$DEFINE BDS5UP}
|
{$DEFINE BDS5UP}
|
||||||
{$DEFINE BDS6UP}
|
{$DEFINE BDS6UP}
|
||||||
{$DEFINE BDS6}
|
|
||||||
{$DEFINE BDS6UP}
|
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
|
{ defines for Delphi 2010 }
|
||||||
|
{$IFDEF VER210}
|
||||||
|
{$DEFINE VER140UP}
|
||||||
|
{$DEFINE DELPHI}
|
||||||
|
|
||||||
|
{$DEFINE DELPHI14}
|
||||||
|
{$DEFINE DELPHI1UP}
|
||||||
|
{$DEFINE DELPHI2UP}
|
||||||
|
{$DEFINE DELPHI3UP}
|
||||||
|
{$DEFINE DELPHI4UP}
|
||||||
|
{$DEFINE DELPHI5UP}
|
||||||
|
{$DEFINE DELPHI6UP}
|
||||||
|
{$DEFINE DELPHI7UP}
|
||||||
|
{$DEFINE DELPHI9UP}
|
||||||
|
{$DEFINE DELPHI10UP}
|
||||||
|
{$DEFINE DELPHI11UP}
|
||||||
|
{$DEFINE DELPHI12UP}
|
||||||
|
{$DEFINE DELPHI14UP}
|
||||||
|
|
||||||
|
{$DEFINE DELPHI2010}
|
||||||
|
{$DEFINE DELPHI2005UP}
|
||||||
|
{$DEFINE DELPHI2006UP}
|
||||||
|
{$DEFINE DELPHI2007UP}
|
||||||
|
{$DEFINE DELPHI2009UP}
|
||||||
|
{$DEFINE DELPHI2010UP}
|
||||||
|
|
||||||
|
{$DEFINE BDS}
|
||||||
|
{$DEFINE BDS7}
|
||||||
|
{$DEFINE BDS3UP}
|
||||||
|
{$DEFINE BDS4UP}
|
||||||
|
{$DEFINE BDS5UP}
|
||||||
|
{$DEFINE BDS6UP}
|
||||||
|
{$DEFINE BDS7UP}
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
|
|
||||||
{$IFDEF WIN32}
|
{$IFDEF WIN32}
|
||||||
{$DEFINE MSWINDOWS} //not automatically defined for Delphi 2 thru 5
|
{$DEFINE MSWINDOWS} //not automatically defined for Delphi 2 thru 5
|
||||||
{$DEFINE 32BIT}
|
{$DEFINE 32BIT}
|
||||||
|
Loading…
Reference in New Issue
Block a user