From 4d55d67c2ee556bb7e890a40dc570b56fb3ccbfb Mon Sep 17 00:00:00 2001 From: snorlax Date: Sun, 21 Jan 2024 01:03:50 +0800 Subject: [PATCH] update docs --- docs/kotlin.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/kotlin.md b/docs/kotlin.md index aaa1b9ba7..0f1aabfa3 100755 --- a/docs/kotlin.md +++ b/docs/kotlin.md @@ -445,7 +445,7 @@ kt_kotlinc_options(name, name, deps, processor_class) +kt_ksp_plugin(name, deps, options, processor_class) Define a KSP plugin for the Kotlin compiler to run. The plugin can then be referenced in the `plugins` attribute @@ -478,6 +478,7 @@ kt_ksp_plugin(name, name | A unique name for this target. | Name | required | | |deps | The list of libraries to be added to the compiler's plugin classpath | List of labels | optional | [] | +|options | Options to be passed to the annotation processor. The syntax is key=value | List of strings | optional | [] | |processor_class | The fully qualified class name that the Java compiler uses as an entry point to the annotation processor. | String | required | |