Skip to content

Commit 75cb2b9

Browse files
committed
Polish build scripts
1 parent fde7f01 commit 75cb2b9

4 files changed

+11
-18
lines changed

build-example.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cd build
2-
D:\Programme\Qt\4.6.2\bin\qmake ..\example\hexedit.pro -r -spec win32-g++ "CONFIG+=release
3-
D:\Programme\QtSDK\mingw\bin\mingw32-make
1+
cd build
2+
qmake.exe ..\example\qhexedit.pro -r -spec win32-g++ "CONFIG+=release
3+
mingw32-make
44
cd ..

build-example.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
cd build
22
qmake ../example/qhexedit.pro
33
make
4-
cd ..
4+
cd ..

build-python-bindings.bat

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
cd build
2-
D:\Programme\Qt\4.6.2\bin\qmake ..\sip\qhexedit.pro -r -spec win32-g++ "CONFIG+=release
3-
D:\Programme\QtSDK\mingw\bin\mingw32-make
4-
5-
python ..\sip\configure.py
6-
D:\Programme\QtSDK\mingw\bin\mingw32-make
7-
D:\Programme\QtSDK\mingw\bin\mingw32-make install
1+
cd build
2+
qmake ..\sip\qhexedit.pro -r -spec win32-g++ "CONFIG+=release
3+
make
4+
5+
python ..\sip\configure.py
6+
make
7+
make install
88
cd ..

build-python-bindings.sh

-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
1-
#
2-
# Attention: QT4 and Python2
3-
#
4-
51
cd build
6-
72
/usr/share/qt4/bin/qmake ../sip/qhexedit.pro
83
sudo make
94

105
python ../sip/configure.py
116
make
127
sudo make install
13-
148
cd ..
15-

0 commit comments

Comments
 (0)