Subversion Repositories DevTools

Rev

Rev 7323 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7323 Rev 7327
Line 99... Line 99...
99
 
99
 
100
    my $fh = ConfigurationFile::New( $opt_buildInfoFile, '--Type=Properties' );
100
    my $fh = ConfigurationFile::New( $opt_buildInfoFile, '--Type=Properties' );
101
    $fh->HeaderSimple( "antBuildinfo (Version $VERSION)", "BuildInfo properties" );
101
    $fh->HeaderSimple( "antBuildinfo (Version $VERSION)", "BuildInfo properties" );
102
 
102
 
103
    # Build style
103
    # Build style
104
    push @propLines, "buildstyle = JANTS";
104
    push @propLines, "buildstyle = ANTS";
105
 
105
 
106
    # Current Build Filter
106
    # Current Build Filter
107
    push @propLines, "buildfilter = " . join(',', sort split(' ', $::GBE_BUILDFILTER));
107
    push @propLines, "buildfilter = " . join(',', sort split(' ', $::GBE_BUILDFILTER));
108
 
108
 
109
    # All platforms that the package can be built for.
109
    # All platforms that the package can be built for.
Line 125... Line 125...
125
    
125
    
126
    # Toolset build information
126
    # Toolset build information
127
    # NONE
127
    # NONE
128
 
128
 
129
    # Indication of production and debug builds
129
    # Indication of production and debug builds
130
    # NONE
130
    # JAVA - Assume a production build
131
    push @propLines, "prod.platforms = ";
131
    push @propLines, "prod.platforms = " . 'JAVA';
132
    push @propLines, "debug.platforms = ";
132
    push @propLines, "debug.platforms = ";
133
 
133
 
134
    # JAVA version specified
134
    # JAVA version specified
135
    push @propLines, "java.version = " . $opt_java;
135
    push @propLines, "java.version = " . $opt_java;
136
 
136