mirror of
https://github.com/YACReader/yacreader
synced 2025-06-03 09:08:20 -04:00
20 lines
329 B
Bash
Executable File
20 lines
329 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 ./bin/YACReader.app
|
|
cp -R ./YACReaderLibrary/YACReaderLibrary.app ./bin/YACReaderLibrary.app
|
|
|
|
echo "Done!"
|