Skip to content

Commit

Permalink
Delphi 11 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentparrett committed Sep 10, 2021
1 parent e5eac22 commit 5bd1df4
Show file tree
Hide file tree
Showing 4 changed files with 1,287 additions and 1 deletion.
7 changes: 6 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.1.0",
"version": "0.1.1",
"description": "Weak References",
"authors": "Vincent Parrett",
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.WeakReference",
Expand Down Expand Up @@ -69,6 +69,11 @@
"compiler": "10.4",
"platforms": "Win32, Win64",
"template": "default"
},
{
"compiler": "11",
"platforms": "Win32, Win64",
"template": "default"
}
],
"templates": [
Expand Down
39 changes: 39 additions & 0 deletions packages/RAD Studio 11 Alexandria/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.4'}
{$LIBSUFFIX '270'}
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
rtl;

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

end.
Loading

0 comments on commit 5bd1df4

Please sign in to comment.