-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigBuild.dpr
More file actions
36 lines (31 loc) · 1.2 KB
/
ConfigBuild.dpr
File metadata and controls
36 lines (31 loc) · 1.2 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
program ConfigBuild;
uses
Vcl.Forms,
System.SysUtils,
Vcl.Dialogs,
ViewBuildConfig in 'ViewBuildConfig.pas' {FrmBuildConfig},
ConfigIntf in 'ConfigIntf.pas',
UtilsTypes in 'UtilsTypes.pas',
JSONHelpers in 'JSONHelpers.pas',
FrameFontEditor in 'FrameFontEditor.pas',
FrameAIAPIEditor in 'FrameAIAPIEditor.pas',
FrameDBEditor in 'FrameDBEditor.pas',
FrameObjectEditor in 'FrameObjectEditor.pas',
FrameListEditor in 'FrameListEditor.pas',
FramesComplexEditor in 'FramesComplexEditor.pas',
ConfigFrameBase in 'ConfigFrameBase.pas',
FrameConfigEditor in 'FrameConfigEditor.pas' {frameConfigEditor: TframeConfigEditor},
FrameArrayEditor in 'FrameArrayEditor.pas',
FrameKeyValueDictEditor in 'FrameKeyValueDictEditor.pas' {FrameKeyValueDictEditor},
// FrameNetConfigEditor in 'FrameNetConfigEditor.pas',
FrameGeoLocationEditor in 'FrameGeoLocationEditor.pas',
// FrameEncryptEditor in 'FrameEncryptEditor.pas',
// FrameDateTimeRangeEditor in 'FrameDateTimeRangeEditor.pas',
ConfigValidator in 'ConfigValidator.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TFrmBuildConfig, FrmBuildConfig);
Application.Run;
end.