Skip to content

Commit

Permalink
Delphi 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentparrett committed Sep 10, 2021
1 parent 91614dd commit 52701f2
Show file tree
Hide file tree
Showing 3 changed files with 1,295 additions and 1 deletion.
7 changes: 6 additions & 1 deletion VSoft.CommandLine.dspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"metadata": {
"id": "VSoft.CommandLine",
"version": "0.1.0",
"version": "0.1.1",
"description": "Command Line Parser",
"authors": "Vincent Parrett",
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.CommandLineParser",
Expand Down Expand Up @@ -69,6 +69,11 @@
"compiler": "10.4",
"platforms": "Win32, Win64",
"template": "default"
},
{
"compiler": "11",
"platforms": "Win32, Win64",
"template": "default"
}
],
"templates": [
Expand Down
43 changes: 43 additions & 0 deletions packages/Rad Studio 11 Alexandria/VSoft.CommandLineR.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package VSoft.CommandLineR;

{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'VSoft.CommandLine runtime for 10.4'}
{$LIBSUFFIX AUTO}
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
rtl;

contains
VSoft.CommandLine.CommandDef in '..\..\Src\VSoft.CommandLine.CommandDef.pas',
VSoft.CommandLine.OptionDef in '..\..\Src\VSoft.CommandLine.OptionDef.pas',
VSoft.CommandLine.Options in '..\..\Src\VSoft.CommandLine.Options.pas',
VSoft.CommandLine.Parser in '..\..\Src\VSoft.CommandLine.Parser.pas',
VSoft.CommandLine.Utils in '..\..\Src\VSoft.CommandLine.Utils.pas';

end.
Loading

0 comments on commit 52701f2

Please sign in to comment.