#!/bin/sh
#
# $RCSfile: get_version,v $
#

if [ ! -d "tools" ]; then
     echo "You must be running this script from the topdir directory."
     exit 1;
fi

egrep "^XX_VERSION" src/xxdiff.pro | sed -e 's/^.*=//;'

