diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-06-09 16:54:23 +0200 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-06-09 16:54:23 +0200 |
commit | fa8bdfa56d847b81206aaea24e2b081bf3d666b4 (patch) | |
tree | a33a4f72bf6bf71cd0ee95aa5e3981eb1f1728b0 | |
parent | 64414ce984bc86e09b8724adbd01f1cb2646c17e (diff) | |
download | dokka-fa8bdfa56d847b81206aaea24e2b081bf3d666b4.tar.gz dokka-fa8bdfa56d847b81206aaea24e2b081bf3d666b4.tar.bz2 dokka-fa8bdfa56d847b81206aaea24e2b081bf3d666b4.zip |
add a simple build script
-rw-r--r-- | build.xml | 13 |
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> |