-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathSempare.Template.Pkg.dpk
87 lines (83 loc) · 5.07 KB
/
Sempare.Template.Pkg.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
78
79
80
81
82
83
84
85
86
87
(*%**************************************************************************************************
* ___ *
* / __| ___ _ __ _ __ __ _ _ _ ___ *
* \__ \ / -_) | ' \ | '_ \ / _` | | '_| / -_) *
* |___/ \___| |_|_|_| | .__/ \__,_| |_| \___| *
* |_| *
****************************************************************************************************
* *
* Sempare Template Engine *
* *
* *
* https://github.com/sempare/sempare-delphi-template-engine *
****************************************************************************************************
* *
* Copyright (c) 2019-2024 Sempare Limited *
* *
* Contact: [email protected] *
* *
* Licensed under the Apache Version 2.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.apache.org/licenses/LICENSE-2.0 *
* https://github.com/sempare/sempare-delphi-template-engine/blob/master/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.Template.Pkg;
{$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}
{$RUNONLY}
{$IMPLICITBUILD ON}
requires
rtl,
dbrtl;
contains
Sempare.Template.BlockResolver in 'src\Sempare.Template.BlockResolver.pas',
Sempare.Template.Visitor in 'src\Sempare.Template.Visitor.pas',
Sempare.Template.Util in 'src\Sempare.Template.Util.pas',
Sempare.Template.StackFrame in 'src\Sempare.Template.StackFrame.pas',
Sempare.Template.Rtti in 'src\Sempare.Template.Rtti.pas',
Sempare.Template.PrettyPrint in 'src\Sempare.Template.PrettyPrint.pas',
Sempare.Template.Parser in 'src\Sempare.Template.Parser.pas',
Sempare.Template.Lexer in 'src\Sempare.Template.Lexer.pas',
Sempare.Template.Functions in 'src\Sempare.Template.Functions.pas',
Sempare.Template.Evaluate in 'src\Sempare.Template.Evaluate.pas',
Sempare.Template.Context in 'src\Sempare.Template.Context.pas',
Sempare.Template.Common in 'src\Sempare.Template.Common.pas',
Sempare.Template.AST in 'src\Sempare.Template.AST.pas',
Sempare.Template in 'src\Sempare.Template.pas',
Sempare.Template.JSON in 'src\Sempare.Template.JSON.pas',
Sempare.Template.ResourceStrings in 'src\Sempare.Template.ResourceStrings.pas',
Sempare.Template.VariableExtraction in 'src\Sempare.Template.VariableExtraction.pas',
Sempare.Template.TemplateRegistry in 'src\Sempare.Template.TemplateRegistry.pas';
end.