From d96efdbfa09bc616145c4385f2cb9e2a752be9d8 Mon Sep 17 00:00:00 2001 From: Andrei Yankovich Date: Wed, 8 Nov 2023 09:26:45 +0300 Subject: [PATCH] Update README.md Signed-off-by: Andrei Yankovich --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 49d3243..b346a4b 100644 --- a/README.md +++ b/README.md @@ -14,17 +14,18 @@ This library contains interfaces for the signing and encryption data. ## Build and Include +### CMake * cd yourRepo * git submodule add https://github.com/QuasarApp/easyssl.git # add the repository of EasySSL into your repo like submodule * git submodule update --init --recursive - * Include in your CMakeLists.txt file the main CMakeLists.txt file of Heart library + * Include in your CMakeLists.txt file the main CMakeLists.txt file of EasySSL library ```cmake add_subdirectory(easyssl) ``` - * link the Heart library to your target + * link the EasySSL library to your target ```cmake target_link_libraries(yourLib PUBLIC easyssl) ```