Files
kotlin-fork/compiler/integration-tests/testData/inlineDisabled/build.xml
T
2014-03-20 17:50:52 +04:00

8 lines
299 B
XML

<project name="Ant Task Test" default="build">
<taskdef resource="org/jetbrains/jet/buildtools/ant/antlib.xml" classpath="${kotlin.lib}/kotlin-ant.jar"/>
<target name="build">
<kotlinc src="${test.data}/hello.kt" output="${temp}/hello.jar" inline="false"/>
</target>
</project>