summaryrefslogtreecommitdiff
path: root/qhexedit2/build-example.sh
diff options
context:
space:
mode:
Diffstat (limited to 'qhexedit2/build-example.sh')
-rwxr-xr-xqhexedit2/build-example.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/qhexedit2/build-example.sh b/qhexedit2/build-example.sh
new file mode 100755
index 0000000..6779e58
--- /dev/null
+++ b/qhexedit2/build-example.sh
@@ -0,0 +1,10 @@
+if [ ! -d build ];then
+ mkdir build
+else
+ rm -rf build/*
+fi
+
+cd build
+qmake ../example/qhexedit.pro
+make
+cd ..