This repository has been archived by the owner on Jul 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSempare.Streams.dpk
77 lines (73 loc) · 3.7 KB
/
Sempare.Streams.dpk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
(*%****************************************************************************
* ___ *
* / __| ___ _ __ _ __ __ _ _ _ ___ *
* \__ \ / -_) | ' \ | '_ \ / _` | | '_| / -_) *
* |___/ \___| |_|_|_| | .__/ \__,_| |_| \___| *
* |_| *
******************************************************************************
* *
* Sempare Streams *
* *
* *
* https://www.github.com/sempare/sempare-streams *
******************************************************************************
* *
* Copyright (c) 2020 Sempare Limited, *
* Conrad Vermeulen <[email protected]> *
* *
* Contact: [email protected] *
* *
* Licensed under the GPL Version 3.0 or the Sempare Commercial License *
* You may not use this file except in compliance with one of these Licenses. *
* You may obtain a copy of the Licenses at *
* *
* https://www.gnu.org/licenses/gpl-3.0.en.html *
* https://github.com/sempare/sempare-streams/tree/dev/docs/commercial.license.md *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the Licenses is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
****************************************************************************%*)
package Sempare.Streams;
{$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}
{$IMPLICITBUILD ON}
requires
dbrtl,
rtl;
contains
Sempare.Streams.Expr in 'src\Sempare.Streams.Expr.pas',
Sempare.Streams.Filter in 'src\Sempare.Streams.Filter.pas',
Sempare.Streams in 'src\Sempare.Streams.pas',
Sempare.Streams.Rtti in 'src\Sempare.Streams.Rtti.pas',
Sempare.Streams.Sort in 'src\Sempare.Streams.Sort.pas',
Sempare.Streams.Types in 'src\Sempare.Streams.Types.pas',
Sempare.Streams.Enum in 'src\Sempare.Streams.Enum.pas',
Sempare.Streams.Spring4d in 'src\Sempare.Streams.Spring4d.pas';
end.