mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
9 lines
257 B
Raku
9 lines
257 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";
|