File tree Expand file tree Collapse file tree 3 files changed +1295
-1
lines changed
packages/Rad Studio 11 Alexandria Expand file tree Collapse file tree 3 files changed +1295
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "metadata": {
33 "id": "VSoft.CommandLine",
4- "version": "0.1.0 ",
4+ "version": "0.1.1 ",
55 "description": "Command Line Parser",
66 "authors": "Vincent Parrett",
77 "projectUrl": "https://github.com/VSoftTechnologies/VSoft.CommandLineParser",
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": [
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 10.4'}
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