How to install this library in C++ Builder 10.2 on Windows 7?
I copied id3lib.dll from "id3lib-3.8.3 win binaries/debug" and put in folder with my project .exe file, than I created id3lib.lib by ImpLib (with using -a option) and added to my project. After that I linked header folder (id3) to my project and wrote #include "id3/tag.h"
. When I'm trying to compile, I get:
[bcc32 Fatal Error] globals.h(56): F1003 Error directive: read message above or win32.readme.first.txt
What am I doing wrong to install this library?
There is an
#error
directive on line 56 ofglobals.h
:The compiler reaches the
#error
ifWIN32
is defined butID3LIB_LINKOPTION
is NOT defined.As you can see in the "message above", you need to manually define
ID3LIB_LINKOPTION
in your project according to how you are linking to the ID3 library. You have not done that yet, which is why you are getting the error.Go into your Project Options and add an entry for
ID3LIB_LINKOPTION=3
(since you are using the DLL version of the ID3 library) in the Conditionals section. Or, put a#define ID3LIB_LINKOPTION 3
statement in your C++ code above any#include
statements for ID3 header files.Also, make sure you add your generated
id3lib.lib
file to your project using the Project Manager, or put a#pragma comment(lib, "id3lib.lib")
directive somewhere in your C++ code.