quake3/code/unix/extract_ver.pl

10 lines
266 B
Perl
Raw Permalink Normal View History

2005-08-19 00:00:00 +00:00
#!/usr/bin/env perl
# extracting version string from game/q_shared.h
# hacked from Wolf build process
# extract the wolf version from q_shared.h
$line = `cat ../game/q_shared.h | grep Q3_VERSION`;
chomp $line;
$line =~ s/.*Q3\ (.*)\"/$1/;
print "$line\n";