Skip to content

Commit e5eac22

Browse files
Added runtime packages and support for dpm compile on install
1 parent 9d1af6e commit e5eac22

25 files changed

+5661
-1
lines changed

VSoft.WeakReference.dspec

Lines changed: 15 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.0.3",
4+
"version": "0.1.0",
55
"description": "Weak References",
66
"authors": "Vincent Parrett",
77
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.WeakReference",
@@ -82,12 +82,26 @@
8282
{
8383
"src": "src\\*.inc",
8484
"dest": "src"
85+
},
86+
{
87+
"src": "packages\\Rad Studio $compilerWithCodeName$\\VSoft.WeakReferenceR.dpk",
88+
"dest": "packages\\Rad Studio $compilerWithCodeName$"
89+
},
90+
{
91+
"src": "packages\\Rad Studio $compilerWithCodeName$\\VSoft.WeakReferenceR.dproj",
92+
"dest": "packages\\Rad Studio $compilerWithCodeName$"
8593
}
8694
],
8795
"searchPaths": [
8896
{
8997
"path": "src"
9098
}
99+
],
100+
"build": [
101+
{
102+
"id": "Runtime",
103+
"project": ".\\packages\\Rad Studio $compilerWithCodeName$\\VSoft.WeakReferenceR.dproj"
104+
}
91105
]
92106
}
93107
]
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.0'}
29+
{$LIBSUFFIX '230'}
30+
{$RUNONLY}
31+
{$IMPLICITBUILD OFF}
32+
33+
requires
34+
rtl;
35+
36+
contains
37+
VSoft.WeakReference in '..\..\src\VSoft.WeakReference.pas';
38+
39+
end.

packages/RAD Studio 10.0 Seattle/VSoft.WeakReferenceR.dproj

Lines changed: 504 additions & 0 deletions
Large diffs are not rendered by default.
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.1'}
29+
{$LIBSUFFIX '240'}
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)