Subversion Repositories DevTools

Rev

Rev 2877 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2877 dpurdie 1
# Copyright (C) 1998-2004 ERG Limited, All rights reserved
2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
5
# Environment(s): n/a
6
#
7
# Description:    build.pl example of MakeNsisPackage
8
#.........................................................................#
9
 
10
#..     Build system
11
#
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
14
 
15
require         "$BUILDLIB_PL";
16
require         "$MAKELIB_PL";
17
 
18
#..     Toolset configuration
19
#
20
 
21
#..     Product configuration
22
#
23
BuildPlatforms ( 'WIN32,--OnlyProd,--NoToolSet' );
24
 
25
BuildName       ( 'InstallShieldStandAloneBuilder','11.5.2000', 'tool', '--RelaxedVersion' );
26
 
27
BuildInterface  ( 'local' );
28
BuildInterface  ( 'interface' );
29
 
30
#..     External Packages
31
#           Use LinkpkgArchive or BuildPkgArchive
32
#
33
LinkPkgArchive ( 'nsis'         , '2.46.0000.cots' );
34
LinkPkgArchive ( 'nsis_packager', '2.1.4000.cr' );
35
 
36
#
37
#   Specify subdirectories to process
38
#
39
BuildSubDir    ( 'src' );
40
 
41
#
42
#   Generate Files
43
BuildDescpkg   ();
44
BuildMake      ();
45