Initial commit
[tietoopcom] / configure
1 #!/bin/bash
2
3 revision=`LC_ALL=C svn info | awk '/^Revision: / {printf "%d\n", $2}'`
4
5 target=tietoopcom
6
7 sed -e "s/@REVISION@/${revision}/g" \
8         < "include/version.in" > "include/version.h"
9
10 sed -e "s/@TARGET@/${target}/g" \
11         < "include/version.in" > "include/version.h"
12         
13 qmake
14 cd src
15 qmake
16 cd ..
17
18 echo Completed at revision ${revision}