I use id3Tag library for my project. I set headers and libraries successfully on Linux and compiled without troubles, but I have some troubles with moving code to Windows. (I only started to study Windows, so sorry in advance for my possible ignorance). My environment is Qt Creator
The problem is with headers from id3 tag library (there are no such problems on Linux!) My .pro file is:
My errors are:
It's compiled perfectly if I don't include that header "id3/tag.h".
What can be a reason? Actually I never programmed for Windows yet.
My steps are:
1. I complied part of code for Linux
2.Copied folder with source code that was successful compiled under Linux to Windows (headers are lying in the current folder).
3. Compiled code without that header ("id3/tag.h").
4. Added that header ("id3/tag.h")
5. And got a ton of complains from compiler
Thanks in advance, for any tips!
LIBS += -lid3
instead of-id3
? Because it'sLIBS += -l<libraryname> -L<librarypath>
– leemes Aug 14 '12 at 22:51DEFINES +=
) – leemes Aug 14 '12 at 23:42