PDA

View Full Version : how to disable building some parts of qt



FS Lover
15th July 2009, 20:40
I want to re-compile qt with mingw.
but I get some compilation errors (regarding d3d support and webkit).
I want to disable re-compiling these parts so that I can compile other parts of qt that I need.

jpn
15th July 2009, 20:42
See "configure -help" for details (eg. -no-webkit). But anyway you should not reuse the same build tree for different compilers.

FS Lover
16th July 2009, 05:44
I couldn't find d3d disabling command certainly.

jpn
16th July 2009, 08:00
I thought it was enabled only if one run the dx_setenv.cmd (ie. the environment contains DX SDK include and library directories).

FS Lover
16th July 2009, 14:09
yes, since I want to recompile qt for adding phonon support and phonon needs DX SDK I have to run the dx_setenv.cmd.

jpn
16th July 2009, 14:28
Hmm, tools/configure/configureapp.cpp seems to check for "-no-direct3d" even if it's not documented. Did you try it yet?

FS Lover
16th July 2009, 15:21
Did you try it yet?
no.
thanks, I will try it.