Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 370 Bytes

Prepare.md

File metadata and controls

35 lines (25 loc) · 370 Bytes

操作系统

Centos 或 Ubuntu 下文以Ubantu举例

编译工具

apt install cmake gcc g++

依赖库

boost库

apt install libboost-dev

yaml-cpp库

git clone https://github.com/jbeder/yaml-cpp.git
cd yaml-cpp
mkdir build
cd build
cmake ..
make & make install

openssl库

apt-get install libssl-dev