From 466321b4b1a7cf64215ea2f29b863e616b0ac4c7 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Sun, 1 Apr 2018 09:28:14 +0200 Subject: [PATCH] Added static builder script for linux. Only works on my computer though. --- staticBuilder.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 staticBuilder.sh diff --git a/staticBuilder.sh b/staticBuilder.sh new file mode 100755 index 0000000..f43baeb --- /dev/null +++ b/staticBuilder.sh @@ -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!" \ No newline at end of file