-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1677c4
commit c364960
Showing
3 changed files
with
1,100 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 12.0'} | ||
{$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. |
Oops, something went wrong.