X-Git-Url: http://wagner.pp.ru/gitweb/?a=blobdiff_plain;f=CMake_ReadMe.md;fp=CMake_ReadMe.md;h=b3bfca1a01cb494e03982d8ecda51f591a3b5fca;hb=e183e8b50da0b46a957c394af8612432a09a42ca;hp=0000000000000000000000000000000000000000;hpb=aed4f443f97e96ed015a7962606b10e1977edd51;p=openssl-gost%2Fengine.git diff --git a/CMake_ReadMe.md b/CMake_ReadMe.md new file mode 100644 index 0000000..b3bfca1 --- /dev/null +++ b/CMake_ReadMe.md @@ -0,0 +1,21 @@ +## CMake Config + +Required variables: +1. `OPENSSL_PATH` - full path to local [openssl](https://github.com/openssl/openssl) source tree + +For Example: + +~~~bash +cmake -DOPENSSL_PATH=/home/user/openssl . +~~~ + +Build Example: + +~~~bash +cd ~/gost-engine +mkdir build +cd build +cmake -DOPENSSL_PATH=/home/user/openssl .. +make -j 8 +cd ../bin +~~~