git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jcl@16 c37d764d-f447-7644-a108-883140d013fb
37 lines
1.6 KiB
ObjectPascal
37 lines
1.6 KiB
ObjectPascal
{**************************************************************************************************}
|
|
{ }
|
|
{ Last modified: $Date:: 2007-09-26 13:32:58 +0200 (mer., 26 sept. 2007) $ }
|
|
{ Revision: $Rev:: 2188 $ }
|
|
{ Author: $Author:: outchy $ }
|
|
{ }
|
|
{**************************************************************************************************}
|
|
|
|
program JediInstaller;
|
|
|
|
{$I jcl.inc}
|
|
|
|
uses
|
|
Forms,
|
|
JclInstall in 'JclInstall.pas',
|
|
JediInstall in 'JediInstall.pas',
|
|
JediInstallConfigIni in 'JediInstallConfigIni.pas',
|
|
JclBorlandTools in '..\source\common\JclBorlandTools.pas',
|
|
JclResources in '..\source\common\JclResources.pas',
|
|
JediRegInfo in 'JediRegInfo.pas',
|
|
JclDotNet in '..\source\windows\JclDotNet.pas',
|
|
FrmCompile in 'VclGui\FrmCompile.pas' {FormCompile},
|
|
JediGUIReadme in 'VclGui\JediGUIReadme.pas' {ReadmeFrame: TFrame},
|
|
JediGUIInstall in 'VclGui\JediGUIInstall.pas' {InstallFrame: TFrame},
|
|
JediGUIMain in 'VclGui\JediGUIMain.pas' {MainForm},
|
|
JediGUIProfiles in 'VclGui\JediGUIProfiles.pas' {ProfilesFrame: TFrame},
|
|
JediProfiles in 'JediProfiles.pas';
|
|
|
|
{$R *.res}
|
|
{$R ..\source\windows\JclCommCtrlAsInvoker.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'JEDI Installer';
|
|
InstallCore.Execute;
|
|
end.
|