Abdelrazak Younes wrote:
Bo Peng wrote:
> Attached patch
> 1. use QtGui4_debug.dll in debug mode
Sorry but it is a bit more complicated... In my system it is
QtCored4.dll and QtGuid4.dll so it is not just a suffix.
If you have QtCore4d.dll, then the patch should work. Otherwise, look
for frontend_libs and change suffix.
It's QtCore_d_4.dll so I changed line 1053:
- qt_lib_suffix += '4d'
+ qt_lib_suffix += 'd4'
But it gives me an error:
What I get is
QTDIR: d:/program/Qt/4.1
NameError: name 'frontend_libs' is not defined:
File "SConstruct", line 1136:
env['VERSION_INFO'] = '''Configuration
Changing the line to:
+ qt_lib_suffix = 'd4'
solved the problem.
But introduce another: all the include paths are trunked :
D:\program\Qt\4.1\include\QtCor
D:\program\Qt\4.1\include\QtGu
Abdel.