From d41965ca3cb180bc82bd5dd6fa747d2b83381b31 Mon Sep 17 00:00:00 2001 From: Paweł Marks Date: Wed, 7 Oct 2020 19:36:49 +0200 Subject: Implement immediate temaplates resolution --- runners/cli/src/main/kotlin/cli/main.kt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'runners/cli') diff --git a/runners/cli/src/main/kotlin/cli/main.kt b/runners/cli/src/main/kotlin/cli/main.kt index 681ebfa6..9cfee73b 100644 --- a/runners/cli/src/main/kotlin/cli/main.kt +++ b/runners/cli/src/main/kotlin/cli/main.kt @@ -64,6 +64,11 @@ class GlobalArguments(args: Array) : DokkaConfiguration { "Throw an exception if the generation exited with warnings" ).default(DokkaDefaults.failOnWarning) + override val delayTemplateSubstitution by parser.option( + ArgType.Boolean, + description = "Delay substitution of some elements (usefull for incremental builds of multimoule projects)" + ).default(DokkaDefaults.delayTemplateSubstitution) + val globalPackageOptions by parser.option( ArgType.String, description = "List of package source sets in format \"prefix,-deprecated,-privateApi,+warnUndocumented,+suppress;...\" " -- cgit