File tree Expand file tree Collapse file tree 3 files changed +1100
-1
lines changed Expand file tree Collapse file tree 3 files changed +1100
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"metadata": {
3
3
"id": "VSoft.CommandLine",
4
- "version": "0.1.5 ",
4
+ "version": "0.1.6 ",
5
5
"description": "Command Line Parser",
6
6
"authors": "Vincent Parrett",
7
7
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.CommandLineParser",
75
75
"compiler": "11.0",
76
76
"platforms": "Win32, Win64",
77
77
"template": "default"
78
+ },
79
+ {
80
+ "compiler": "12.0",
81
+ "platforms": "Win32, Win64",
82
+ "template": "default"
78
83
}
79
84
],
80
85
"templates": [
Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments