Rev 1139 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#########################################################################Copyright (C) 2010 Vix-ERG Limited, All rights reserved## Module name :build.pl# Module type : Makefile system# Compiler(s) : Perl#Environment(s): jats## Description : Jats build file for NSIS Example##......................................................................###.. Build system#$MAKELIB_PL = "$ENV{ GBE_TOOLS }/makelib.pl";$BUILDLIB_PL = "$ENV{ GBE_TOOLS }/buildlib.pl";require "$BUILDLIB_PL";require "$MAKELIB_PL";#.. Product configuration#BuildPlatforms ( 'WIN32,--OnlyProd,--NoToolSet' );BuildName ( 'nsis-example 1.2.3004 test' );BuildInterface ( 'local' );BuildInterface ( 'interface' );#.. External Packages# Use LinkpkgArchive or BuildPkgArchive#LinkPkgArchive ( 'nsis' , '2.46.0000.cots' );LinkPkgArchive ( 'nsis_packager', '1.0.0000.cr' );## Source of files to installBuildPkgArchive ('AT91load', '1.0.2.cr' );## Specify subdirectories to process#BuildSubDir ( 'src' );## Generate FilesBuildDescpkg ();BuildMake ();