mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
20 lines
277 B
Bash
Executable File
20 lines
277 B
Bash
Executable File
#! /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!"
|