Rev 2877 | Blame | Compare with Previous | Last modification | View Log | RSS feed
# Copyright (C) 1998-2004 ERG Limited, All rights reserved## Module name : build.pl# Module type : Makefile system# Environment(s): n/a## Description: build.pl example of MakeNsisPackage#.........................................................................##.. Build system#$MAKELIB_PL = "$ENV{ GBE_TOOLS }/makelib.pl";$BUILDLIB_PL = "$ENV{ GBE_TOOLS }/buildlib.pl";require "$BUILDLIB_PL";require "$MAKELIB_PL";#.. Toolset configuration##.. Product configuration#BuildPlatforms ( 'WIN32,--OnlyProd,--NoToolSet' );BuildName ( 'InstallShieldStandAloneBuilder','11.5.2000', 'tool', '--RelaxedVersion' );BuildInterface ( 'local' );BuildInterface ( 'interface' );#.. External Packages# Use LinkpkgArchive or BuildPkgArchive#LinkPkgArchive ( 'nsis' , '2.46.0000.cots' );LinkPkgArchive ( 'nsis_packager', '2.1.4000.cr' );## Specify subdirectories to process#BuildSubDir ( 'src' );## Generate FilesBuildDescpkg ();BuildMake ();