2018-04-01 07:28:14 +00:00
|
|
|
#!/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
|
2018-04-01 07:28:14 +00:00
|
|
|
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/
|
2018-04-01 07:28:14 +00:00
|
|
|
echo "Done!"
|