-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHelperLibraryPackage.dpk
77 lines (73 loc) · 2.43 KB
/
HelperLibraryPackage.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
package HelperLibraryPackage;
{$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}
{$IMPLICITBUILD ON}
requires
rtl,
RESTComponents,
DbxCommonDriver,
inet,
IndySystem,
IndyProtocols,
IndyCore;
contains
UGenericUtils in 'src\generic\UGenericUtils.pas',
UGenericException in 'src\generic\UGenericException.pas',
UDebugUtils in 'src\debug\UDebugUtils.pas',
UArray in 'src\array\UArray.pas',
UArrayUtils in 'src\array\UArrayUtils.pas',
UArrayReferences in 'src\array\UArrayReferences.pas',
UArrayException in 'src\array\UArrayException.pas',
UThreadUtils in 'src\thread\UThreadUtils.pas',
UThreadData in 'src\thread\UThreadData.pas',
UGenericDictionary in 'src\generic\UGenericDictionary.pas',
UWindowsUtils in 'src\windows\UWindowsUtils.pas',
UNTDLL in 'src\ntdll\UNTDLL.pas',
UFileUtils in 'src\file\UFileUtils.pas',
UAttributesUtils in 'src\attributes\UAttributesUtils.pas',
UConsoleUtils in 'src\console\UConsoleUtils.pas',
UDateUtils in 'src\date\UDateUtils.pas',
UEnum in 'src\enum\UEnum.pas',
UEnumException in 'src\enum\UEnumException.pas',
UEnumUtils in 'src\enum\UEnumUtils.pas',
UJSONUtils in 'src\json\UJSONUtils.pas',
UTimeUtils in 'src\time\UTimeUtils.pas',
UJSONException in 'src\json\UJSONException.pas',
UStringUtils in 'src\string\UStringUtils.pas',
UGenericObject in 'src\generic\UGenericObject.pas',
URtti in 'src\generic\URtti.pas',
UAutoDestroy in 'src\generic\UAutoDestroy.pas',
UDirection in 'src\enum\UDirection.pas',
UGenericFunctions in 'src\generic\UGenericFunctions.pas',
UEasyImport in 'src\UEasyImport.pas',
UTOperation in 'src\operation\UTOperation.pas',
UOperationException in 'src\operation\UOperationException.pas',
UDictImports in 'src\generic\imports\UDictImports.pas',
UArrayImports in 'src\array\imports\UArrayImports.pas',
UGenericValue in 'src\generic\UGenericValue.pas',
UAutoDestroyManagement in 'src\generic\UAutoDestroyManagement.pas',
UIOperations in 'src\operation\interface\UIOperations.pas';
end.