标签:products logs pat win10 off 解压 set 源码 conf
一定要记住openssl安装后的目录,比如: C:\soft\install\openssl, 待会儿配置环境变量需要这个目录
上文可知,缺少openssl后,cmake提示缺少系统环境变量
CMake Error at C:/xxxxx/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake:165 (message):
Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the
system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY
OPENSSL_INCLUDE_DIR)
OPENSSL_ROOT_DIR、OPENSSL_CRYPTO_LIBRARY 和 OPENSSL_INCLUDE_DIR 都是缺少的。那我们就加上。
name | value |
---|---|
OPENSSL_ROOT_DIR | C:\soft\install\openssl |
OPENSSL_CRYPTO_LIBRARY | C:\soft\install\openssl\lib |
OPENSSL_INCLUDE_DIR | C:\soft\install\openssl\include |
我的环境变量配置
解压libevent的源码后,如果参考 上文 ,将EVENT__DISABLE_OPENSSL改为ON, 那么现在需要你改为OFF,恢复为默认。
选择合适的版本(32?64?)和编译器, configure.
win10使用cmake编译libevent(续) 彻底解决依赖openssl
标签:products logs pat win10 off 解压 set 源码 conf
原文地址:https://www.cnblogs.com/pandamohist/p/14227631.html