summaryrefslogtreecommitdiff
path: root/qhexedit2/build-example.sh
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-07-07 12:37:21 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-07-07 12:37:21 +0200
commitfebaef00017278ac65cb7e285564ebc9d5dadfe5 (patch)
tree940ac1386117785496334432dc03a3c0cfa02de5 /qhexedit2/build-example.sh
parentf41f2dce18111c923c331a3fe6900edee731d040 (diff)
parent004b73ed7ef33cb407897f7eccbec5f3861f99d7 (diff)
Merge commit '004b73ed7ef33cb407897f7eccbec5f3861f99d7' as 'qhexedit2'
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 ..