From 192ebd04b21d1b3a40eba2f06977ec9e9b5fcf16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sun, 15 Jul 2012 12:05:49 +0200 Subject: [PATCH] a?adido el script de compiaci?n para mac os x --- compileOSX.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 compileOSX.sh diff --git a/compileOSX.sh b/compileOSX.sh new file mode 100755 index 00000000..49d94fc5 --- /dev/null +++ b/compileOSX.sh @@ -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!"