mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
23 lines
370 B
Bash
Executable File
23 lines
370 B
Bash
Executable File
#! /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 ./YACReader.app
|
|
cp -R ./YACReaderLibrary/YACReaderLibrary.app ./YACReaderLibrary.app
|
|
|
|
echo "Configuring release apps"
|
|
./releaseOSX.sh
|
|
|
|
echo "Done!"
|