-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAEFramework_R.dpk
More file actions
57 lines (53 loc) · 1.62 KB
/
AEFramework_R.dpk
File metadata and controls
57 lines (53 loc) · 1.62 KB
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
package AEFramework_R;
{$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 ON}
{$RANGECHECKS ON}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'AE Framework Runtime Package'}
{$LIBSUFFIX AUTO}
{$RUNONLY}
{$IMPLICITBUILD ON}
requires
rtl,
xmlrtl,
soaprtl,
dbrtl,
inet;
contains
OSVersion in '3rdParty\OSVersion.pas',
AE.Application.Helper in 'AE.Application\AE.Application.Helper.pas',
AE.Application.Setting in 'AE.Application\AE.Application.Setting.pas',
AE.Application.Settings in 'AE.Application\AE.Application.Settings.pas',
AE.Application.Application in 'AE.Application\AE.Application.Application.pas',
AE.Application.Console in 'AE.Application\AE.Application.Console.pas',
AE.Application.Engine in 'AE.Application\AE.Application.Engine.pas',
AE.Helper.TBytes in 'AE.Misc\AE.Helper.TBytes.pas',
AE.Misc.Random in 'AE.Misc\AE.Misc.Random.pas',
AE.Misc.UnixTimestamp in 'AE.Misc\AE.Misc.UnixTimestamp.pas',
AE.MNB.ExchangeRates in 'AE.Misc\AE.MNB.ExchangeRates.pas',
MNB.ExchangeRate.SoapService in 'AE.Misc\MNB.ExchangeRate.SoapService.pas',
AE.Comp.MenuTreeParser in 'AE.Comp\AE.Comp.MenuTreeParser.pas',
AE.DLL.Loader in 'AE.Misc\AE.DLL.Loader.pas',
AE.DLL.AutoLoader in 'AE.Misc\AE.DLL.AutoLoader.pas';
end.