我正在尝试从我从此处下载的源构建ClamAV:http://www.clamav.net/downloads。我下载了clamav-0.99.tar.gz。

我在Visual Studio 2010中的下载的win32文件夹下打开ClamAV.sln。但是,在构建它时,出现以下错误:

c++ - OpenSSL错误-Windows 10上的ClamAV构建-LMLPHP

错误:
error C1083: Cannot open include file: 'openssl/ssl.h' No such file or directory

我还会收到各种未定义的错误。我没有更改任何代码,所以我不明白为什么会收到这些错误。我安装了OpenSSL并将其添加到我的PATH中,但仍然可以使用。

任何帮助,将不胜感激,谢谢!

最佳答案

将OpenSSL标头的路径添加到需要它们的项目中。为此,请打开项目的“属性”窗口,然后转到Configuration Properties -> C/C++ -> General -> Additional Include Directories

您可能还需要指定其链接库的路径。在Configuration Properties -> Linker -> General -> Additional Library Directories中指定文件夹,并在Configuration Properties -> Linker -> Input -> Additional Dependencies中指定实际文件名。

10-06 15:39