Merge pull request #359 from JacobBarthelmeh/cmake

adjust md file for newlines
pull/360/head
Eric Blankenhorn 2022-12-29 17:24:55 -06:00 committed by GitHub
commit 3661692c13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -2,11 +2,14 @@ This is an example of adding the wolfSSL library as a subdirectory to a project
and using cmake to build.
## Steps to build:
\# clone or download the wolfssl bundle and put it in the subdirectory wolfssl
```
# clone or download the wolfssl bundle and put it in the subdirectory wolfssl
git clone https://github.com/wolfssl/wolfssl
mkdir build
cd build
cmake .. -DCMAKE_C_FLAGS=-I../include/
make
./hash example_string
```