Subversion Repositories autosfx

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
program MakeExe;
2
(************************************************************************
3
 Copyright (C) 2009, 2010  by Russell J. Peters, Roger Aelbrecht,
4
      Eric W. Engler and Chris Vleghert.
5
 
6
   This file is part of TZipMaster Version 1.9.
7
 
8
    TZipMaster is free software: you can redistribute it and/or modify
9
    it under the terms of the GNU Lesser General Public License as published by
10
    the Free Software Foundation, either version 3 of the License, or
11
    (at your option) any later version.
12
 
13
    TZipMaster is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU Lesser General Public License for more details.
17
 
18
    You should have received a copy of the GNU Lesser General Public License
19
    along with TZipMaster.  If not, see <http://www.gnu.org/licenses/>.
20
 
21
    contact: problems@delphizip.org (include ZipMaster in the subject).
22
    updates: http://www.delphizip.org
23
    DelphiZip maillist subscribe at http://www.freelists.org/list/delphizip
24
************************************************************************)
25
 
26
uses
27
  Forms,
28
  mainunit in 'mainunit.pas' {Mainform},
29
  Addunit in 'Addunit.pas' {AddForm};
30
 
31
{$R *.RES}
32
{.$R '..\..\res\ZMRes19_str.res'}
33
{$R '..\..\res\ZMRes19_sfx.res'}
34
 
35
begin
36
  Application.Initialize;
37
  Application.Title := 'Make Exe Archive';
38
  Application.CreateForm(TMainform, Mainform);
39
  Application.CreateForm(TAddForm, AddForm);
40
  Application.Run;
41
end.