aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index dda2ac2e..c5532e58 100644
--- a/build.xml
+++ b/build.xml
@@ -1,10 +1,13 @@
<project name="Dokka" default="build">
<typedef resource="org/jetbrains/kotlin/ant/antlib.xml" classpath="${kotlin.compiler}/lib/kotlin-ant.jar"/>
+ <property name="kotlinc.repeat" value="1"/>
<target name="build">
<mkdir dir="out"/>
<kotlinc src="src" output="out/dokka.jar">
+ <compilerArg value="-Xrepeat"/>
+ <compilerArg value="${kotlinc.repeat}"/>
<classpath>
<fileset dir="lib" includes="*.jar"/>
</classpath>