extract_ver.pl 257 B

12345678910
  1. #!/usr/bin/env perl
  2. # extracting version string from game/q_shared.h
  3. # hacked from Wolf build process
  4. # extract the wolf version from q_shared.h
  5. $line = `cat ../game/q_shared.h | grep Q3_VERSION`;
  6. chomp $line;
  7. $line =~ s/.*Q3\ (.*)\"/$1/;
  8. print "$line\n";