common/tools/zip_includefiles.pl
author ThomasE
Wed, 29 Jul 2009 15:35:45 +0100
changeset 283 1c53d9d8d78d
parent 116 47cccedacd2d
permissions -rw-r--r--
Added a new "sf.os.compile.fast" parameter to skip redundant steps when executing the builds in separate config targets.

#!perl -w

use strict;

my @includefiles = glob "*_includefile.txt";
foreach (@includefiles)
{
    my $includefilename=$_;
	if (m/(.*)(_includefile.txt)/) {
		my $zipfilename = $1.".zip";
		system("7za a -tzip -i@".$includefilename . " " .$zipfilename);
	}
}