Update README.md
All checks were successful
buildbot/DocsGenerator Build finished.
buildbot/AndroidBuilder_v8Qt6 Build finished.
buildbot/LinuxCMakeBuilderQt6 Build finished.
buildbot/IOSCMakeBuilder Build finished.
buildbot/WindowsCMakeBuilder Build finished.

Signed-off-by: Andrei Yankovich <EndrIIMail@gmail.com>
This commit is contained in:
Andrei Yankovich 2023-11-08 09:26:45 +03:00 committed by GitHub
parent 200e0b3442
commit d96efdbfa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
```