ubuntu安装QT依赖
sudo apt-get install build-essential && sudo apt-get install libgl1-mesa-dev
调用ssl库时报错(QT5.7只支持openssl 1.0.2)
安装编译openssl1.0.2
git clone https://github.com/openssl/openssl.git
git checkout OpenSSL_1_0_2-stable
./config enable-shared
make depend
make -j12