mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 17:47:38 +08:00
0e42951d44
* Added nav mesh support * fixed many warnings and misc bugs * Fixed the create*projects scripts in mp * Added a bunch of stuff to .gitignore
22 lines
433 B
Perl
22 lines
433 B
Perl
use File::DosGlob;
|
|
@ARGV = map {
|
|
my @g = File::DosGlob::glob($_) if /[*?]/;
|
|
@g ? @g : $_;
|
|
} @ARGV;
|
|
|
|
open FILE, ">__tmpshaderlist.txt";
|
|
|
|
foreach $arg (@ARGV)
|
|
{
|
|
if( $arg =~ m/\.fxc$/i || $arg =~ m/\.vsh$/i || $arg =~ m/\.psh$/i )
|
|
{
|
|
print $arg . "\n";
|
|
print FILE $arg . "\n";
|
|
}
|
|
}
|
|
|
|
close FILE;
|
|
|
|
system "buildshaders.bat __tmpshaderlist";
|
|
|
|
unlink "__tmpshaderlist.txt"; |