From 369dfde6b02b594fd219913d920306741a60a38b Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Thu, 6 Jul 2023 22:05:05 +0800 Subject: [PATCH] ... --- README.md | 3 ++- docs/quick-start/bind.md | 2 +- docs/quick-start/installation.md | 5 ++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a6c89d29..e0e0b452 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,13 @@ And `#include` it in your project. You can also use cmake to build it from source. See CMakeLists.txt for details. These variables can be set to control the build process: -+ `PK_BUILD_EXE` - Build the executable file + `PK_BUILD_STATIC_LIB` - Build the static library + `PK_BUILD_SHARED_LIB` - Build the shared library If you are working with [Unity Engine](https://unity.com/), you can download our plugin [PocketPython](https://assetstore.unity.com/packages/tools/visual-scripting/pocketpy-241120) on the Asset Store. +If you use [Dear ImGui](https://github.com/ocornut/imgui), we provide official bindings for it. See [pocketpy-imgui](https://github.com/blueloveTH/pocketpy-imgui) for details. + ### Compile flags To compile it with your project, these flags must be set: diff --git a/docs/quick-start/bind.md b/docs/quick-start/bind.md index 7ebb308d..10bc773c 100644 --- a/docs/quick-start/bind.md +++ b/docs/quick-start/bind.md @@ -43,7 +43,7 @@ vm->bind(obj, ## Old style bindings !!! -Native functions do not support keyword arguments. +Old style bindings do not support keyword arguments. !!! ### Bind a function diff --git a/docs/quick-start/installation.md b/docs/quick-start/installation.md index c128da97..041582a8 100644 --- a/docs/quick-start/installation.md +++ b/docs/quick-start/installation.md @@ -9,10 +9,13 @@ And `#include` it in your project. You can also use cmake to build it from source. See CMakeLists.txt for details. These variables can be set to control the build process: -+ `PK_BUILD_EXE` - Build the executable file + `PK_BUILD_STATIC_LIB` - Build the static library + `PK_BUILD_SHARED_LIB` - Build the shared library +If you are working with [Unity Engine](https://unity.com/), you can download our plugin [PocketPython](https://assetstore.unity.com/packages/tools/visual-scripting/pocketpy-241120) on the Asset Store. + +If you use [Dear ImGui](https://github.com/ocornut/imgui), we provide official bindings for it. See [pocketpy-imgui](https://github.com/blueloveTH/pocketpy-imgui) for details. + ### Compile flags To compile it with your project, these flags must be set: