-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
ChatGptWizard.dpk
64 lines (60 loc) · 1.56 KB
/
ChatGptWizard.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
package ChatGptWizard;
{$R *.res}
{$R *.dres}
{$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 OFF}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO OFF}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE RELEASE}
{$ENDIF IMPLICITBUILDING}
{$IMPLICITBUILD ON}
requires
rtl,
designide,
IndySystem,
IndyProtocols,
IndyCore,
bindcomp,
RESTComponents,
vclFireDAC,
FireDAC,
FireDACCommonDriver,
FireDACCommon,
FireDACSqliteDriver,
vclwinx;
contains
UChatGptMain in 'UChatGptMain.pas',
UChatGPTThread in 'Utils\UChatGPTThread.pas',
UChatGPTProgress in 'Forms\UChatGPTProgress.pas' {Frm_Progress},
UChatGPTMenuHook in 'Utils\UChatGPTMenuHook.pas',
UChatGPTSetting in 'Forms\UChatGPTSetting.pas' {Frm_Setting},
UChatGPTQFrame in 'Forms\UChatGPTQFrame.pas' {Fram_Question: TFrame},
UChatGPTQuestion in 'Forms\UChatGPTQuestion.pas' {FrmChatGPT},
UChatGPTLexer in 'Lexer\UChatGPTLexer.pas',
UPascalLexer in 'Lexer\UPascalLexer.pas',
UPascalLexerTypes in 'Lexer\UPascalLexerTypes.pas',
UHistory in 'Utils\UHistory.pas',
UWriteSonicThread in 'Utils\UWriteSonicThread.pas',
UConsts in 'Utils\UConsts.pas',
UYouChatThread in 'Utils\UYouChatThread.pas',
UEditorHelpers in 'Utils\UEditorHelpers.pas',
UAbout in 'Forms\UAbout.pas' {Frm_About};
end.