From e11e888acd6d036e017b8c85348559908160bdad Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Thu, 21 Mar 2024 16:41:00 +0800 Subject: [PATCH] some doc fix --- README.md | 4 ++-- docs/quick-start/installation.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b184f8e2..96af1417 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,12 @@ And `#include` it in your project. It is recommended to use the latest dev versi #### Use CMake -Clone the whole repository as a submodule in your project, +Clone the whole repository as a submodule into your project, In your CMakelists.txt, add the following lines: ```cmake add_subdirectory(pocketpy) -target_link_libraries(your_target pocketpy) +target_link_libraries( pocketpy) if(EMSCRIPTEN) # exceptions must be enabled for emscripten diff --git a/docs/quick-start/installation.md b/docs/quick-start/installation.md index 14a17974..d2a59dd8 100644 --- a/docs/quick-start/installation.md +++ b/docs/quick-start/installation.md @@ -13,12 +13,12 @@ And `#include` it in your project. It is recommended to use the latest dev versi #### Use CMake -Clone the whole repository as a submodule in your project, +Clone the whole repository as a submodule into your project, In your CMakelists.txt, add the following lines: ```cmake add_subdirectory(pocketpy) -target_link_libraries(your_target pocketpy) +target_link_libraries( pocketpy) if(EMSCRIPTEN) # exceptions must be enabled for emscripten