That would defeat the handiness of the pre-compiled Qt packages.
I'm no stranger to building Qt--I've done so many times in the past. I just hope to never have to need to do so again, if it can be at all avoided.
But thanks.
Quote:
Originally Posted by eschwartz
In any event, if you do need the debug build of Qt, you can always build it yourself.
Code:
wget http://download.qt-project.org/official_releases/qt/5.3/5.3.2/single/qt-everywhere-opensource-src-5.3.2.tar.gz
tar xzf qt-everywhere-opensource-src-5.3.2.tar.gz
cd qt-everywhere-opensource-src-5.3.2
./configure -confirm-license -opensource -debug \
-prefix /path/to/install \
[other options]
make
make install
|