forked from ShaunRoselt/Roselt-Developer-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoselt_Developer_Tools_Web.dpr
More file actions
28 lines (24 loc) · 922 Bytes
/
Roselt_Developer_Tools_Web.dpr
File metadata and controls
28 lines (24 loc) · 922 Bytes
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
program Roselt_Developer_Tools_Web;
{$R *.dres}
uses
Vcl.Forms,
WEBLib.Forms,
uMain_web in 'uMain_web.pas' {frmMain: TWebForm} {*.html},
Roselt.Tools in 'Roselt.Tools.pas',
uBootstrapIcons in 'Lib\uBootstrapIcons.pas',
Roselt.AppInfo in 'Roselt.AppInfo.pas',
uFrame_NameGenerator in 'Tools\Web\uFrame_NameGenerator.pas' {Frame_NameGenerator: TWebFrame} {*.html},
uFontAwesomeIcons in 'Lib\uFontAwesomeIcons.pas',
Roselt.NameGenerator in 'Lib\Roselt.NameGenerator.pas',
Roselt.Utility in 'Lib\Roselt.Utility.pas',
Roselt.NumberBaseConversion in 'Lib\Roselt.NumberBaseConversion.pas',
uFeatherIcons in 'Lib\uFeatherIcons.pas',
Roselt.SystemInformation in 'Lib\Roselt.SystemInformation.pas',
Roselt.Clipboard in 'Lib\Roselt.Clipboard.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.