10 lines
328 B
XML
Vendored
10 lines
328 B
XML
Vendored
<project name="Ant Task Test" default="build">
|
|
<taskdef resource="org/jetbrains/kotlin/ant/antlib.xml" classpath="${kotlin.lib}/kotlin-ant.jar"/>
|
|
|
|
<target name="build">
|
|
<kotlinc src="${test.data}" output="${temp}">
|
|
<compilerarg line="-Xuse-fir-lt=false"/>
|
|
</kotlinc>
|
|
</target>
|
|
</project>
|