blob: a11200f4f4c070697f02246328f2515c3bfbb6e0 [file] [log] [blame]
Dmitry Jemerov0783f6f2015-01-15 14:59:50 +01001<project name="Dokka" default="document">
2 <!-- Demonstrates the usage of the Dokka Ant task. Assumes Dokka has already been compiled -->
3
4 <typedef resource="dokka-antlib.xml" classpath="out/artifacts/dokka.jar"/>
5
6 <target name="document">
Dmitry Jemerovf338bc02015-01-15 18:34:23 +01007 <dokka src="src" outputdir="doc" modulename="dokka">
8 <sourcelink path="." url="https://github.com/orangy/dokka/blob/master" linesuffix="#L"/>
9 </dokka>
Dmitry Jemerov0783f6f2015-01-15 14:59:50 +010010 </target>
11</project>