db8ca37fa3
git-svn-id: https://svn.code.sf.net/p/q3cellshading/code/trunk@2 db09e94b-7117-0410-a7e6-85ae5ff6e0e9
9 lines
266 B
Raku
9 lines
266 B
Raku
#!/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";
|