From d6abfb06008a0f969e5be80ebb6c3d251f00314b Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Wed, 23 Aug 2017 08:42:34 +0200 Subject: [PATCH] Basic build script Adding a basic build script for Linux user After downloading/cloning do a `chmod a+x build.sh` and run the script in order to build the app. --- build.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..9ba256a --- /dev/null +++ b/build.sh @@ -0,0 +1,6 @@ +#!/bin/bash +mkdir build +cd build +qmake --qt=5 ../src/imp.pro +make +sudo make install