4
1
mirror of https://github.com/QuasarApp/qTbot.git synced 2025-05-10 12:19:35 +00:00

Merge pull request from QuasarApp/EndrII-patch-1

Update README.md
This commit is contained in:
Andrei Yankovich 2023-11-19 22:47:47 +01:00 committed by GitHub
commit 69b3b8363c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,17 +6,17 @@ At this time This library supports next platforms:
## Build and Include
* cd yourRepo
* git submodule add https://github.com/QuasarApp/easyssl.git # add the repository of Heart into your repo like submodule
* git submodule add https://github.com/QuasarApp/easyssl.git # add the repository of qTbot 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 qTbot library
```cmake
add_subdirectory(easyssl)
add_subdirectory(qTbot)
```
* link the Heart library to your target
```cmake
target_link_libraries(yourLib PUBLIC easyssl)
target_link_libraries(yourLib PUBLIC qTbot)
```
* rebuild yuor project