|
|
# From: Thomas Rønshof [mailto:tr@xxxxxxxxx]
# Sent: Tuesday, February 28, 2006 8:40 AM
# To: Malte Witt
# Cc: qt-interest@xxxxxxxxxxxxx
# Subject: Re: Some Q about qmake and configs...
#
# Hmmm strange...
#
# If I use CONFIG += console debug then it compiles ok to debug -directory.
# But the linker comes with an error: can't find -lQtGuid4
#
# If I only have CONFIG += debug, the linker says: can't find -lQtmaind
#
# If I use CONFIG += console THEN it works ! But compiles to release and
# qDebug works !
#
# So the buttomline is that I have to use += console to make qDebug to work.
# But I can only compile to release.
This probably means that you do not have a debug build of Qt present...
make sure that you have run "configure" with -debug-and-release.
(To verify, you can also look in your "lib" directory and see if there are
libraries that look both like "QtXXXX" and "QtXXXXd" there - if not, then
this is your problem.)
--
To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with
"unsubscribe" in the subject or the body.
List archive and information: http://lists.trolltech.com/qt-interest/
|
|