aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/build.sh b/build.sh
index bfde7c4..6848d31 100755
--- a/build.sh
+++ b/build.sh
@@ -1,10 +1,14 @@
#!/bin/sh
-mkdir -p build
-
ROOT="$(dirname "$(readlink -f "$0")")"
+mkdir -p build
cd build
-qtchooser -run-tool=qmake -qt=5 "$ROOT"
-make sub-qtmips_cli sub-qtmips_gui
+# Compile
+qtchooser -run-tool=qmake -qt=5 "$ROOT" "QMAKE_RPATHDIR += ../qtmips_machine"
+make
+
+# Link executables to more suitable place
+ln -fs qtmips_cli/qtmips_cli cli
+ln -fs qtmips_gui/qtmips_gui gui