Release 1.0 Ready! #11

Merged
andrewlalis merged 6 commits from development into master 2018-04-01 07:31:09 +00:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit 466321b4b1 - Show all commits

9
staticBuilder.sh Executable file
View File

@ -0,0 +1,9 @@
#!/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!"