Hi
So far I've been googling for 5h and still I can't make this simple program work.
I want to manage MP3 tags. I have chosen TagLib as my library to edit files.

So what is what I know so far.
I have managed to obtain .dll and .a file (so I could even choose) from here:
http://www.joelverhagen.com/blog/201...ib-on-windows/

and I have the include folder from TagLib homepage:
http://developer.kde.org/~wheeler/taglib.html

so now what I think i should do is edit my .pro file:
INCLUDEPATH += D:\Qt\taglib\include\
LIBS += D:\Qt\taglib

so in include I have headers and stuff of TagLib and in taglib i got the .dll and .a file.

Now in mainwindow.cpp I did:
#include <tag.h> so i should be able to use the whole Library, but... i got a lot of errors and I dont understand why.

I think that if i manage to solve first two ii will deal with the rest:

http://s536.photobucket.com/albums/f...rent=first.png
this one ilustrates that i think i should define how i am going to include (dynamic or static) library. But i dont understand why the include has an unbuild cmake file and simply changing extension is not working properly.

http://s536.photobucket.com/albums/f...ent=second.png
and this one shows that taglib is using fstring but according to compiler my computer is not... and I really dont know how to solve this one cos I simply miss another library.


Would id3lib be easier to use?
I just need to read and write tags, dont care about speed and stuff.
But still i cant find any examples of using this libs or even how to properly load them into project ; (

Thanks in advance.