I have downloaded a library and want to use in my solutions.
I have 2 directories in my library /include
with all .h
files and /lib
with .so
files.
I have added the /include
directory to my projects additional include directories and now can include the .h
files without compiler error. The issue is when I try to use the functionality from .h
files, it gives me the link error, smth like error LNK2001: unresolved external symbol __imp__curl_easy_setopt
My guess is it doesnt see the definition of the fuinctions in .so
files. (only guessing here..)
Will much appreciate if someone can help me to resolve me this issue.