We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84b362d commit 93de311Copy full SHA for 93de311
2 files changed
build-example.sh.autosave
@@ -0,0 +1,10 @@
1
+if [ ! -d build ];then
2
+ mkdir build
3
+else
4
+ rm -rf build/*
5
+fi
6
+
7
+cd build
8
+qmake ../example/qhexedit.pro
9
+make
10
+cd ..
build-python-bindings.sh.autosave
@@ -0,0 +1,22 @@
+# for Qt4 use qt4-qmake
+# /usr/share/qt4/bin/qmake ../src/qhexedit.pro
11
12
+# for Qt5 use qt5-qmake
13
+/usr/lib/x86_64-linux-gnu/qt5/bin/qmake ../src/qhexedit.pro
14
15
+sudo make
16
17
18
+# for PyQt4 use python2 and PyQt4
19
+# sudo python2 setup.py install
20
21
+# for PyQt5 use python3 and PyQt5
22
+sudo python3 setup.py install
0 commit comments