cb6fb78bc3
Rename some Ant tests: "simple[...]" -> "simpleWithoutStdlib[...]" and "simpleWithStdlib[...]" -> "simple[...]"
11 lines
380 B
XML
Vendored
11 lines
380 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">
|
|
<kotlin2js src="${test.data}/root1"
|
|
output="${temp}/out.js"
|
|
outputPrefix="${test.data}/prefix"
|
|
outputPostfix="${test.data}/postfix" />
|
|
</target>
|
|
</project>
|