Quote Originally Posted by Bojan
Is there a way to just build debug libs? I installed Qt 4.1 for Windows from the installer thing, and I would like to be able to build apps w/ debug. There really is no need for me to compile all the examples and tools.
Basically the installer put an entry in Start->Programs (under windows)
This entry has an item called "Compile debug libs"!

If it does'n work, as for me, You'll have to use the command line :
-get into %QTDIR%
-type : configure -debug [any extra options]
-get into %QTDIR%\src
-type : mingw32-make debug

Note : I recommend putting the -zlib option or you may get linking errors.

There might still be a problem... I'm using Windows ME and the command lines used in makefiles (such as "cd src && make") didn't work.
If so write a batch file like that:

@echo off

cd $$$
mingw32-make debug
where $$$ is one of the subdirs concerned.
For a complete list of subdirs check out the makefile;

Note : Some of these subdirs may also be subdirs themselves (such as plugins) repeat the makefile process for them and everything will be fine.

edit : fixed typo