Skip to content

Commit c364960

Browse files
Adding Delphi 12.0 support.
1 parent b1677c4 commit c364960

File tree

3 files changed

+1100
-1
lines changed

3 files changed

+1100
-1
lines changed

VSoft.CommandLine.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.CommandLine",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"description": "Command Line Parser",
66
"authors": "Vincent Parrett",
77
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.CommandLineParser",
@@ -75,6 +75,11 @@
7575
"compiler": "11.0",
7676
"platforms": "Win32, Win64",
7777
"template": "default"
78+
},
79+
{
80+
"compiler": "12.0",
81+
"platforms": "Win32, Win64",
82+
"template": "default"
7883
}
7984
],
8085
"templates": [
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
package VSoft.CommandLineR;
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.CommandLine runtime for 12.0'}
29+
{$LIBSUFFIX AUTO}
30+
{$RUNONLY}
31+
{$IMPLICITBUILD OFF}
32+
33+
requires
34+
rtl;
35+
36+
contains
37+
VSoft.CommandLine.CommandDef in '..\..\Src\VSoft.CommandLine.CommandDef.pas',
38+
VSoft.CommandLine.OptionDef in '..\..\Src\VSoft.CommandLine.OptionDef.pas',
39+
VSoft.CommandLine.Options in '..\..\Src\VSoft.CommandLine.Options.pas',
40+
VSoft.CommandLine.Parser in '..\..\Src\VSoft.CommandLine.Parser.pas',
41+
VSoft.CommandLine.Utils in '..\..\Src\VSoft.CommandLine.Utils.pas';
42+
43+
end.

0 commit comments

Comments
 (0)