Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4914 gchristi 1
#.. Build system
2
#
3
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
4
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
5
 
6
require         "$BUILDLIB_PL";
7
require         "$MAKELIB_PL";
8
 
9
 
10
#.. Toolset configuration
11
#
12
 
13
 
14
#.. Product configuration
15
#
16
BuildPlatforms   ( 'VS2010,--OnlyProd' );
17
BuildName        ( 'nsis_path 1.0.0000 cr' );
18
BuildInterface   ( 'local' );
19
BuildInterface   ( 'interface' );
20
 
21
LinkPkgArchive( 'nsis', '2.46.1000.cots' );
22
 
23
#..    Imported package archives
24
#
25
 
26
 
27
#.. Build source tree makefile(s)
28
#
29
BuildDescpkg    ();   
30
BuildVersion    ();   
31
BuildMake   ();
32
 
33
 
34
 
35