Skip to content

Commit 5bd1df4

Browse files
Delphi 11 support.
1 parent e5eac22 commit 5bd1df4

File tree

4 files changed

+1287
-1
lines changed

4 files changed

+1287
-1
lines changed

VSoft.WeakReference.dspec

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"id": "VSoft.WeakReference",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"description": "Weak References",
66
"authors": "Vincent Parrett",
77
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.WeakReference",
@@ -69,6 +69,11 @@
6969
"compiler": "10.4",
7070
"platforms": "Win32, Win64",
7171
"template": "default"
72+
},
73+
{
74+
"compiler": "11",
75+
"platforms": "Win32, Win64",
76+
"template": "default"
7277
}
7378
],
7479
"templates": [
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package VSoft.WeakReferenceR;
2+
3+
{$R *.res}
4+
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5+
{$ALIGN 8}
6+
{$ASSERTIONS ON}
7+
{$BOOLEVAL OFF}
8+
{$DEBUGINFO OFF}
9+
{$EXTENDEDSYNTAX ON}
10+
{$IMPORTEDDATA ON}
11+
{$IOCHECKS ON}
12+
{$LOCALSYMBOLS ON}
13+
{$LONGSTRINGS ON}
14+
{$OPENSTRINGS ON}
15+
{$OPTIMIZATION OFF}
16+
{$OVERFLOWCHECKS OFF}
17+
{$RANGECHECKS OFF}
18+
{$REFERENCEINFO ON}
19+
{$SAFEDIVIDE OFF}
20+
{$STACKFRAMES ON}
21+
{$TYPEDADDRESS OFF}
22+
{$VARSTRINGCHECKS ON}
23+
{$WRITEABLECONST OFF}
24+
{$MINENUMSIZE 1}
25+
{$IMAGEBASE $400000}
26+
{$DEFINE DEBUG}
27+
{$ENDIF IMPLICITBUILDING}
28+
{$DESCRIPTION 'VSoft.WeakReference Runtime for 10.4'}
29+
{$LIBSUFFIX '270'}
30+
{$RUNONLY}
31+
{$IMPLICITBUILD OFF}
32+
33+
requires
34+
rtl;
35+
36+
contains
37+
VSoft.WeakReference in '..\..\src\VSoft.WeakReference.pas';
38+
39+
end.

0 commit comments

Comments
 (0)