forked from AliDehbansiahkarbon/OpenAPIClientWizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenAPIClientWizard.dpk
More file actions
65 lines (61 loc) · 2.24 KB
/
OpenAPIClientWizard.dpk
File metadata and controls
65 lines (61 loc) · 2.24 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
58
59
60
61
62
63
64
65
package OpenAPIClientWizard;
{$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}
{$DESCRIPTION 'Ali Dehbansiahkarbon.(adehban@gmail.com)'}
{$LIBSUFFIX AUTO}
{$DESIGNONLY}
{$IMPLICITBUILD ON}
requires
rtl,
designide,
ExpertsCreators,
RESTComponents,
vclwinx;
contains
OCW.ProjectWizardEx in 'Source\Wizard\OCW.ProjectWizardEx.pas',
OCW.Forms.NewProjectWizard in 'Source\Forms\OCW.Forms.NewProjectWizard.pas' {Frm_OCWNewProject},
OCW.CodeGen.NewOCWProject in 'Source\CodeGen\OCW.CodeGen.NewOCWProject.pas',
OCW.CodeGen.NewProject in 'Source\CodeGen\OCW.CodeGen.NewProject.pas',
OCW.CodeGen.SourceFile in 'Source\CodeGen\OCW.CodeGen.SourceFile.pas',
OCW.CodeGen.Templates in 'Source\CodeGen\OCW.CodeGen.Templates.pas',
OCW.CodeGen.NewModelUnit in 'Source\CodeGen\OCW.CodeGen.NewModelUnit.pas',
OCW.CodeGen.NewUnit in 'Source\CodeGen\OCW.CodeGen.NewUnit.pas',
OCW.Registration in 'Source\Wizard\OCW.Registration.pas',
OCW.Splash.Registration in 'Source\Wizard\OCW.Splash.Registration.pas',
OCW.Util.Rest in 'Source\Utils\OCW.Util.Rest.pas',
OCW.Util.OpenAPIHelper in 'Source\Utils\OCW.Util.OpenAPIHelper.pas',
OCW.Util.Setting in 'Source\Utils\OCW.Util.Setting.pas',
OCW.Forms.About in 'Source\Forms\OCW.Forms.About.pas' {Frm_About},
OCW.Util.Core in 'Source\Utils\OCW.Util.Core.pas',
OCW.Util.PostmanHelper in 'Source\Utils\OCW.Util.PostmanHelper.pas',
Neslib.Utf8 in 'Source\ThrdParty\Neslib.Yaml\Neslib\Neslib.Utf8.pas',
Neslib.Hash in 'Source\ThrdParty\Neslib.Yaml\Neslib\Neslib.Hash.pas',
Neslib.SysUtils in 'Source\ThrdParty\Neslib.Yaml\Neslib\Neslib.SysUtils.pas',
Neslib.LibYaml in 'Source\ThrdParty\Neslib.Yaml\Neslib.LibYaml.pas',
Neslib.Yaml in 'Source\ThrdParty\Neslib.Yaml\Neslib.Yaml.pas',
OCW.Util.Consts in 'Source\Utils\OCW.Util.Consts.pas';
end.