diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-03-26 17:35:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 17:35:44 +0100 |
commit | 9589161d9861a1d2eb02df1c5858b3ff67ca0c7a (patch) | |
tree | 308e7d2bcd682e08812e6b68fc182eb276475562 /runners/cli/src/main/kotlin | |
parent | ac4b818a8616e4de8f702167fe6ddbe911df5d24 (diff) | |
download | dokka-9589161d9861a1d2eb02df1c5858b3ff67ca0c7a.tar.gz dokka-9589161d9861a1d2eb02df1c5858b3ff67ca0c7a.tar.bz2 dokka-9589161d9861a1d2eb02df1c5858b3ff67ca0c7a.zip |
Reintroduce multimodule documentation (#1804)
Diffstat (limited to 'runners/cli/src/main/kotlin')
-rw-r--r-- | runners/cli/src/main/kotlin/cli/main.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runners/cli/src/main/kotlin/cli/main.kt b/runners/cli/src/main/kotlin/cli/main.kt index b11ed0dc..42ac1806 100644 --- a/runners/cli/src/main/kotlin/cli/main.kt +++ b/runners/cli/src/main/kotlin/cli/main.kt @@ -76,6 +76,13 @@ class GlobalArguments(args: Array<String>) : DokkaConfiguration { override val suppressObviousFunctions: Boolean by lazy{ !noSuppressObviousFunctions } + private val _includes by parser.option( + ArgTypeFile, + description = "Markdown files that would be displayed in multi-module page separated by the semicolon `;`)" + ).delimiter(";") + + override val includes: Set<File> by lazy { _includes.toSet() } + val globalPackageOptions by parser.option( ArgType.String, description = "List of package source sets in format \"prefix,-deprecated,-privateApi,+warnUndocumented,+suppress;...\" " |