Unresolved external symbol _strerror_r error while executing libcurl with QT
-
@Ace04 said in Unresolved external symbol _strerror_r error while executing libcurl with QT:
LIBS += -L"$$PRO_FILE_PWD/dependencies/SSL/lib/" libcrypto.a libssl.a
Your
LIBSlines are wrong.Correct would be:
LIBS += -L"$$_PRO_FILE_PWD_/dependencies/SSL/lib" -lcrypto -lssl(Add-l, omitlib...and.a.Also, convert all backslashes to forward slashes.
Also, remove all trailing slashes from the paths (
INCLUDEPATHandLIBS)Regards.