Basically the installer put an entry in Start->Programs (under windows)Originally Posted by Bojan
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:
where $$$ is one of the subdirs concerned.@echo off
cd $$$
mingw32-make debug
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
Bookmarks