010 Qt Cryptographic Architecture

1.下载QCA源码

官网:http://delta.affinix.com/qca/

GitHub:git clone git://anongit.kde.org/qca.git

:qca-2.1.0

 

2.下载CMAKE,并添加到环境变量

http://www.cmake.org/

:cmake-3.7.1

执行执行make 的时候出错,找不到make指令,下边继续安装相关包.

 

3.下载Doxygen

官网:http://www.stack.nl/~dimitri/doxygen/download.html

GitHub:git clone https://github.com/doxygen/doxygen.git

cd doxygen目录

mkdir build创建build目录

cd build进入build

cmake -G "Visual Studio 12 2013" ..

 

提示错误:Could NOT find PythonInterp (missing:PYTHON_EXECUTABLE)

4.下载python,(勾选添加到环境变量)

官网:https://www.python.org/downloads/release/python-360/

:python-3.6.0

检查python环境是否安装好:打开DOS,输入python即可

 

提示出错:Could NOT find FLEX (missing:FLEX_EXECUTABLE)

5.下载bison.exe/flex.exe(自己百度lo),注意添加环境变量,然后重新打开DOS窗口,再cmake一次

010 Qt Cryptographic Architecture