i want to know how to build 开发者_运维知识库ssleay32 and libeay32 from vc++, were to get the source code,and how to build it.
OpenSSL source is located here and includes build files for VC++.
Your first information source is INSTALL.W32
with a good instructions on how to compile the library. Also, you may check README
file under ms
directory.
After you're done with the lib compilation you should link the library to your project with OpenSSL specific code:
- Select Project
- Select Settings
- Select Link tab
- Select Input Category
- The libraries are listed here: "Object/library modules"
- If necessary additional paths can be added here: "Additional library paths
精彩评论