RecipeDB/staticBuilder.sh

9 lines
333 B
Bash
Raw Normal View History

#!/bin/sh
#Builds a static release of the RecipeDB program for linux.
echo "Building static release..."
qmake
2018-04-18 20:20:14 +00:00
make -C /home/andrew/Programming/Projects/RecipeDB/staticBuild_Linux/ clean
PATH=/home/andrew/Programming/Qt5_10static/bin:$PATH
export PATH
2018-04-18 20:20:14 +00:00
make -C /home/andrew/Programming/Projects/RecipeDB/staticBuild_Linux/
echo "Done!"