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 4f8be3c commit a89cbed
Show file tree
Hide file tree
Showing 3 changed files with 1,326 additions and 2 deletions.
42 changes: 42 additions & 0 deletions Packages/Rad Studio 11 Alexandria/VSoft.AwaitableR.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
package VSoft.AwaitableR;

{$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 OFF}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO OFF}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE RELEASE}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'VSoft Awaitable Runtime Package for 10.4'}
{$LIBSUFFIX AUTO}
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
rtl,
OmniThreadLibraryRuntime,
VSoft.CancellationTokenR;

contains
VSoft.Awaitable.Impl in '..\..\Source\VSoft.Awaitable.Impl.pas',
VSoft.Awaitable in '..\..\Source\VSoft.Awaitable.pas';

end.

0 comments on commit a89cbed

Please sign in to comment.