aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 00000000..dda2ac2e
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,13 @@
+<project name="Dokka" default="build">
+ <typedef resource="org/jetbrains/kotlin/ant/antlib.xml" classpath="${kotlin.compiler}/lib/kotlin-ant.jar"/>
+
+ <target name="build">
+ <mkdir dir="out"/>
+
+ <kotlinc src="src" output="out/dokka.jar">
+ <classpath>
+ <fileset dir="lib" includes="*.jar"/>
+ </classpath>
+ </kotlinc>
+ </target>
+</project>