Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split Package in Designtime and Runtime #64

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Packages/FIBPlus_D25.dpk
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ package FIBPlus_D25;
{$IMAGEBASE $400000}
{$DEFINE RELEASE}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'FibPlus Access Components'}
{$IMPLICITBUILD OFF}
{$RUNONLY}

requires
rtl,
Expand Down Expand Up @@ -79,7 +79,6 @@ contains
pFIBLists in '..\pFIBLists.pas',
pFIBStoredProc in '..\pFIBStoredProc.pas',
IB_ErrorCodes in '..\IB_ErrorCodes.pas',
RegFIBPlus in '..\RegFIBPlus.pas',
FIBCloneComponents in '..\FIBCloneComponents.pas',
pFIBFieldsDescr in '..\pFIBFieldsDescr.pas',
SIBAPI in '..\SIBAPI.pas',
Expand Down
3 changes: 1 addition & 2 deletions Packages/FIBPlus_D25.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@
<DCCReference Include="..\pFIBLists.pas"/>
<DCCReference Include="..\pFIBStoredProc.pas"/>
<DCCReference Include="..\IB_ErrorCodes.pas"/>
<DCCReference Include="..\RegFIBPlus.pas"/>
<DCCReference Include="..\FIBCloneComponents.pas"/>
<DCCReference Include="..\pFIBFieldsDescr.pas"/>
<DCCReference Include="..\SIBAPI.pas"/>
Expand Down Expand Up @@ -279,7 +278,7 @@
<Overwrite>true</Overwrite>
</Platform>
</DeployFile>
<DeployFile LocalName="C:\Users\Public\Documents\Embarcadero\Studio\17.0\Bpl\FIBPlus_D25.bpl" Configuration="Debug" Class="ProjectOutput">
<DeployFile LocalName="C:\Users\Public\Documents\Embarcadero\Studio\19.0\Bpl\FIBPlus_D25.bpl" Configuration="Debug" Class="ProjectOutput">
<Platform Name="Win32">
<RemoteName>FIBPlus_D25.bpl</RemoteName>
<Overwrite>true</Overwrite>
Expand Down
38 changes: 38 additions & 0 deletions Packages/FIBPlus_D25D.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package FIBPlus_D25D;

{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$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}
{$DEFINE RELEASE}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'FibPlus Access Components'}
{$IMPLICITBUILD OFF}

requires
rtl,
FIBPlus_D25;

contains
RegFIBPlus in '..\RegFIBPlus.pas';

end.
Loading