forked from academiadocodigo/Bind4D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bind4Delphi.dpk
89 lines (86 loc) · 3.24 KB
/
Bind4Delphi.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
88
89
package Bind4Delphi;
{$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
rtl,
vcl,
vclwinx,
dbrtl,
vcldb,
xmlrtl,
soaprtl,
bindcomp,
RESTComponents,
CloudService,
FireDAC,
FireDACCommonDriver,
FireDACCommon,
IndySystem,
IndyCore,
IndyProtocols;
contains
Bind4D.Attributes in 'src\Bind4D.Attributes.pas',
Bind4D.ChangeCommand in 'src\Bind4D.ChangeCommand.pas',
Bind4D.Component.Attributes in 'src\Bind4D.Component.Attributes.pas',
Bind4D.Component.CheckBox in 'src\Bind4D.Component.CheckBox.pas',
Bind4D.Component.ComboBox in 'src\Bind4D.Component.ComboBox.pas',
Bind4D.Component.ComboEdit in 'src\Bind4D.Component.ComboEdit.pas',
Bind4D.Component.DateEdit in 'src\Bind4D.Component.DateEdit.pas',
Bind4D.Component.DateTimePicker in 'src\Bind4D.Component.DateTimePicker.pas',
Bind4D.Component.DBGrid in 'src\Bind4D.Component.DBGrid.pas',
Bind4D.Component.Edit in 'src\Bind4D.Component.Edit.pas',
Bind4D.Component.Factory in 'src\Bind4D.Component.Factory.pas',
Bind4D.Component.Image in 'src\Bind4D.Component.Image.pas',
Bind4D.Component.Interfaces in 'src\Bind4D.Component.Interfaces.pas',
Bind4D.Component.Labels in 'src\Bind4D.Component.Labels.pas',
Bind4D.Component.MaskEdit in 'src\Bind4D.Component.MaskEdit.pas',
Bind4D.Component.Panel in 'src\Bind4D.Component.Panel.pas',
Bind4D.Component.Rectangle in 'src\Bind4D.Component.Rectangle.pas',
Bind4D.Component.SpeedButton in 'src\Bind4D.Component.SpeedButton.pas',
Bind4D.Component.StringGrid in 'src\Bind4D.Component.StringGrid.pas',
Bind4D.Helpers in 'src\Bind4D.Helpers.pas',
Bind4D.Interfaces in 'src\Bind4D.Interfaces.pas',
Bind4D in 'src\Bind4D.pas',
Bind4D.Types in 'src\Bind4D.Types.pas',
Bind4D.Utils in 'src\Bind4D.Utils.pas',
Bind4D.Utils.Rtti in 'src\Bind4D.Utils.Rtti.pas',
Bind4D.Types.Helpers in 'src\Bind4D.Types.Helpers.pas',
Bind4D.Types.Get in 'src\Bind4D.Types.Get.pas',
Bind4D.Types.Interfaces in 'src\Bind4D.Types.Interfaces.pas',
Bind4D.Types.Post in 'src\Bind4D.Types.Post.pas',
Bind4D.Types.Put in 'src\Bind4D.Types.Put.pas',
Bind4D.Types.Delete in 'src\Bind4D.Types.Delete.pas',
Bind4D.Component.ImageList in 'src\Bind4D.Component.ImageList.pas',
Bind4D.Component.Utils in 'src\Bind4D.Component.Utils.pas',
Bind4D.Component.Helpers in 'src\Bind4D.Component.Helpers.pas',
Bind4D.Component.Mock in 'src\Bind4D.Component.Mock.pas',
Bind4D.Rest in 'src\Bind4D.Rest.pas',
Bind4D.Forms.QuickRegistration in 'src\Forms\Bind4D.Forms.QuickRegistration.pas',
Bind4D.Component.Styles in 'src\Bind4D.Component.Styles.pas',
Bind4D.Component.ListBox in 'src\Bind4D.Component.ListBox.pas',
Bind4D.Component.CheckListBox in 'src\Bind4D.Component.CheckListBox.pas';
end.