boost::asio ssl linking error

前端 未结 3 2042
猫巷女王i
猫巷女王i 2021-01-18 23:57

I\'m using boost version 1.47, visual studio 2010, I downloaded the binaries for windows and linked to the include directory and lib directory from my project preferences. B

相关标签:
3条回答
  • 2021-01-19 00:05

    Add the SSL dependencies (lib files) manually to project-->properties-->Linker-->Input-->Additional Dependencies.

    0 讨论(0)
  • 2021-01-19 00:17

    These are the libraries I linked to with boost 1.69, visual studio 2019, and OpenSSl-Win64:

    libssl.lib;libcrypto.lib
    
    0 讨论(0)
  • 2021-01-19 00:24

    As mentioned in the comments to the question, my project linked once I added:

    lib\libeay32.lib
    lib\ssleay32.lib
    

    To the Project->Configuration Properties->Linker->Input->Additional Dependencies property.

    0 讨论(0)
提交回复
热议问题