aboutsummaryrefslogtreecommitdiff
path: root/build.xml
blob: dda2ac2e40d2f00161ec0ca5699d55ceee5e1dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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>