This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
DelphiPI.dpr
45 lines (41 loc) · 1.7 KB
/
DelphiPI.dpr
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
program DelphiPI;
uses
Forms,
PackageInfo in 'PackageInfo.pas',
FormAbout in 'FormAbout.pas' {frmAbout},
PackageCompiler in 'PackageCompiler.pas',
FormWizard in 'FormWizard.pas' {frmWizard},
PageBase in 'PageBase.pas' {WizardPage},
PageSelectFolders in 'PageSelectFolders.pas' {SelectFoldersPage},
PageProgress in 'PageProgress.pas' {ProgressPage},
WizardIntfs in 'WizardIntfs.pas',
PageShowPackageList in 'PageShowPackageList.pas' {ShowPackageListPage},
PageInstallHelpFiles in 'PageInstallHelpFiles.pas' {InstallHelpFilesPage},
PageSummary in 'PageSummary.pas' {SummaryPage},
CompileThread in 'CompileThread.pas',
CompilationData in 'CompilationData.pas',
ScriptPersister in 'ScriptPersister.pas',
gnugettext in 'libs\gnugettext.pas',
Utils in 'Utils.pas',
PackageInfoFactory in 'PackageInfoFactory.pas',
PackageList in 'PackageList.pas',
PackageDependencyVerifier in 'PackageDependencyVerifier.pas',
ProgressMonitor in 'ProgressMonitor.pas',
MonitoredPackageCompiler in 'MonitoredPackageCompiler.pas',
PageCompilerOptions in 'PageCompilerOptions.pas' {SelectCompilerOptions},
InstalledPackageResolver in 'InstalledPackageResolver.pas',
TreeModel in 'TreeModel.pas',
ListViewModel in 'ListViewModel.pas',
TreeViewModel in 'TreeViewModel.pas',
TreeNodes in 'TreeNodes.pas',
PackageLoadThread in 'PackageLoadThread.pas',
DelphiVersionTreeViewModel in 'DelphiVersionTreeViewModel.pas',
CustomTypes in 'CustomTypes.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := 'Delphi Package Installer';
Application.CreateForm(TfrmWizard, frmWizard);
Application.Run;
end.