wrote:
> Hello,
> let me first describe the situation: I am developing an application
> using Qt Designer 3.3.5 on OpenSuSE Linux for my mp3 player. So I need
> to get the id3 tags from the mp3 files, and I've downloaded the sources
> of id3lib. I've included the headers (there are no other files) in my
> project in Qt designer, then created an object from my files. When
> starting the make command, it compiles normally all the headers
> (although giving some minor warnings) but at the end it gives me an
> "undefined reference" error to the constructor and destructor of the
> object which I create in my source file. Please help! I've tryed
> everything. Before I start make, I always start qmake, also I've
> checked my .pro file for the HEADERS directive, and everything is OK -
> all headers are listed normally.
>
Hi, I use Qt, but can't help you with what you gave here. Generally..
you qmake -project && qmake && make if files are in the same directory.
Actually, I don't think you're going about this the right way. Unless
there is a _real_ good reason, you don't want to include the mp3
headers in the Qt designer. You should do the Qt designer stuff and
then make your own subclass off the form. You would then include the
mp3 stuff in your subclass code and using the inherited (Qt) elements.
Also, be sure you have the .so to go along with the headers.
Anyway, did you know about
http://www.qtcentre.org/ -and-
http://lists.trolltech.com/ The Qt-interest list would be the one.
--
Robert