aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 00000000..81a4dea9
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,9 @@
+<project name="Dokka" default="document">
+ <!-- Demonstrates the usage of the Dokka Ant task. Assumes Dokka has already been compiled -->
+
+ <typedef resource="dokka-antlib.xml" classpath="out/artifacts/dokka.jar"/>
+
+ <target name="document">
+ <dokka src="src" outputdir="doc" modulename="dokka"/>
+ </target>
+</project>