Skip to content

Commit

Permalink
Added compile on install and packages
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentparrett committed Feb 13, 2021
1 parent 499311e commit 91614dd
Show file tree
Hide file tree
Showing 25 changed files with 5,753 additions and 2 deletions.
15 changes: 13 additions & 2 deletions VSoft.CommandLine.dspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"metadata": {
"id": "VSoft.CommandLine",
"version": "0.0.2",
"version": "0.1.0",
"description": "Command Line Parser",
"authors": "Vincent Parrett",
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.CommandLineParser",
Expand Down Expand Up @@ -79,12 +79,23 @@
"src": "src\\**.pas",
"flatten": true,
"dest": "src"
}
},
{
"src":"packages\\Rad Studio $CompilerWithCodeName$\\*.dp*",
"exclude": ["*.dproj.local"],
"dest":"packages\\Rad Studio $CompilerWithCodeName$"
}
],
"searchPaths": [
{
"path": "src"
}
],
"build": [
{
"id": "Runtime",
"project": ".\\packages\\Rad Studio $compilerWithCodeName$\\VSoft.CommandLineR.dproj"
}
]
}
]
Expand Down
43 changes: 43 additions & 0 deletions packages/Rad Studio 10.0 Seattle/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.0'}
{$LIBSUFFIX '230'}
{$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.
508 changes: 508 additions & 0 deletions packages/Rad Studio 10.0 Seattle/VSoft.CommandLineR.dproj

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions packages/Rad Studio 10.1 Berlin/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.1'}
{$LIBSUFFIX '240'}
{$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 91614dd

Please sign in to comment.