aboutsummaryrefslogtreecommitdiff
path: root/build-docs.xml
blob: a11200f4f4c070697f02246328f2515c3bfbb6e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
<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">
            <sourcelink path="." url="https://github.com/orangy/dokka/blob/master" linesuffix="#L"/>
        </dokka>
    </target>
</project>