-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDependencyTracker.dpr
More file actions
39 lines (34 loc) · 1.71 KB
/
Copy pathDependencyTracker.dpr
File metadata and controls
39 lines (34 loc) · 1.71 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
{-------------------------------------------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-------------------------------------------------------------------------------}
program DependencyTracker;
uses
Forms,
MainForm in 'MainForm.pas' {fMainForm},
DepsTracker_Common in 'Source\DepsTracker_Common.pas',
DepsTracker_Project in 'Source\DepsTracker_Project.pas',
DepsTracker_Manager in 'Source\DepsTracker_Manager.pas',
ProjectNameForm in 'ProjectNameForm.pas' {fProjectNameForm},
ProjectFrame in 'ProjectFrame.pas' {frmProjectFrame: TFrame},
TextEditForm in 'TextEditForm.pas' {fTextEditForm},
ProjectsSelectForm in 'ProjectsSelectForm.pas' {fProjectsSelectForm},
TemplateSettingsForm in 'TemplateSettingsForm.pas' {fTemplateSettingsForm},
DependencyTreeForm in 'DependencyTreeForm.pas' {fDependencyTreeForm},
DependencyFrame in 'DependencyFrame.pas' {frmDependencyFrame: TFrame};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Dependency Tracker';
Application.CreateForm(TfMainForm, fMainForm);
Application.CreateForm(TfProjectNameForm, fProjectNameForm);
Application.CreateForm(TfTextEditForm, fTextEditForm);
Application.CreateForm(TfProjectsSelectForm, fProjectsSelectForm);
Application.CreateForm(TfTemplateSettingsForm, fTemplateSettingsForm);
Application.CreateForm(TfDependencyTreeForm, fDependencyTreeForm);
fProjectNameForm.Initialize(fMainForm.Manager);
fProjectsSelectForm.Initialize(fMainForm.Manager);
fTemplateSettingsForm.Initialize(fMainForm.Manager);
Application.Run;
end.