]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - CMake_ReadMe.md
Grasshopper && CMake
[openssl-gost/engine.git] / CMake_ReadMe.md
1 ## CMake Config
2
3 Required variables:
4 1. `OPENSSL_PATH` - full path to local [openssl](https://github.com/openssl/openssl) source tree
5
6 For Example:
7
8 ~~~bash
9 cmake -DOPENSSL_PATH=/home/user/openssl .
10 ~~~
11
12 Build Example:
13
14 ~~~bash
15 cd ~/gost-engine
16 mkdir build
17 cd build
18 cmake -DOPENSSL_PATH=/home/user/openssl ..
19 make -j 8
20 cd ../bin
21 ~~~