-
Notifications
You must be signed in to change notification settings - Fork 12
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
be37260
commit 2ab6cdf
Showing
3 changed files
with
1,178 additions
and
3 deletions.
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
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 Delphi 12.0'} | ||
{$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. |
Oops, something went wrong.