From be1dfd5ec61214506d7f1e730fc51542b3b24ec7 Mon Sep 17 00:00:00 2001 From: Andrei Yankovich Date: Mon, 20 Nov 2023 00:47:27 +0300 Subject: [PATCH] Update README.md Signed-off-by: Andrei Yankovich --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f6841ae..149f96b 100644 --- a/README.md +++ b/README.md @@ -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