9 lines
307 B
Bash
9 lines
307 B
Bash
|
#!/bin/sh
|
||
|
#Builds a static release of the RecipeDB program for linux.
|
||
|
echo "Building static release..."
|
||
|
qmake
|
||
|
make -C /home/andrew/Programming/Projects/staticRelease/ clean
|
||
|
PATH=/home/andrew/Programming/Qt5_10static/bin:$PATH
|
||
|
export PATH
|
||
|
make -C /home/andrew/Programming/Projects/staticRelease/
|
||
|
echo "Done!"
|