This commit is contained in:
Luis Ángel San Martín 2012-07-14 09:58:51 +02:00
commit b6efb1a31c

19
compileX11.sh Executable file
View File

@ -0,0 +1,19 @@
#! /bin/bash
echo "Compiling YACReader"
cd ./YACReader
qmake
make
cd ..
echo "Compiling YACReaderLibrary"
cd ./YACReaderLibrary
qmake
make
cd ..
mkdir ./bin
cp ./YACReader/YACReader ./bin/YACReader
cp ./YACReaderLibrary/YACReaderLibrary ./bin/YACReaderLibrary
echo "Done!"