diff --git a/compileX11.sh b/compileX11.sh new file mode 100755 index 00000000..46d770ed --- /dev/null +++ b/compileX11.sh @@ -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!"