编译时提示如下的类似信息时:
Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_LIBRARIES OPENSSL_INCLUDE_DIR)
在 Ubuntu 系统上的解决方法是,在命令行输入如下命令:
sudo apt-get install libssl-dev
安装 openssl 的编译依赖。这样一般就能解决我们遇到的问题了。