Skip to content

Commit

Permalink
Added runtime packages and support for dpm compile on install
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentparrett committed Feb 16, 2021
1 parent 9d1af6e commit e5eac22
Show file tree
Hide file tree
Showing 25 changed files with 5,661 additions and 1 deletion.
16 changes: 15 additions & 1 deletion VSoft.WeakReference.dspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"metadata": {
"id": "VSoft.WeakReference",
"version": "0.0.3",
"version": "0.1.0",
"description": "Weak References",
"authors": "Vincent Parrett",
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.WeakReference",
Expand Down Expand Up @@ -82,12 +82,26 @@
{
"src": "src\\*.inc",
"dest": "src"
},
{
"src": "packages\\Rad Studio $compilerWithCodeName$\\VSoft.WeakReferenceR.dpk",
"dest": "packages\\Rad Studio $compilerWithCodeName$"
},
{
"src": "packages\\Rad Studio $compilerWithCodeName$\\VSoft.WeakReferenceR.dproj",
"dest": "packages\\Rad Studio $compilerWithCodeName$"
}
],
"searchPaths": [
{
"path": "src"
}
],
"build": [
{
"id": "Runtime",
"project": ".\\packages\\Rad Studio $compilerWithCodeName$\\VSoft.WeakReferenceR.dproj"
}
]
}
]
Expand Down
39 changes: 39 additions & 0 deletions packages/RAD Studio 10.0 Seattle/VSoft.WeakReferenceR.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package VSoft.WeakReferenceR;

{$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 ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'VSoft.WeakReference Runtime for 10.0'}
{$LIBSUFFIX '230'}
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
rtl;

contains
VSoft.WeakReference in '..\..\src\VSoft.WeakReference.pas';

end.
504 changes: 504 additions & 0 deletions packages/RAD Studio 10.0 Seattle/VSoft.WeakReferenceR.dproj

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions packages/RAD Studio 10.1 Berlin/VSoft.WeakReferenceR.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package VSoft.WeakReferenceR;

{$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 ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'VSoft.WeakReference Runtime for 10.1'}
{$LIBSUFFIX '240'}
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
rtl;

contains
VSoft.WeakReference in '..\..\src\VSoft.WeakReference.pas';

end.
Loading

0 comments on commit e5eac22

Please sign in to comment.