a?adido el script de compiaci?n para mac os x

This commit is contained in:
Luis Ángel San Martín 2012-07-15 12:05:49 +02:00
parent 77c2d934fe
commit 192ebd04b2

19
compileOSX.sh Executable file
View File

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