cb6fb78bc3
Rename some Ant tests: "simple[...]" -> "simpleWithoutStdlib[...]" and "simpleWithStdlib[...]" -> "simple[...]"
15 lines
458 B
XML
Vendored
15 lines
458 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" >
|
|
<src>
|
|
<pathelement path="${test.data}/bar.kt"/>
|
|
<fileset dir="${test.data}/root2">
|
|
<include name="**/*.kt"/>
|
|
</fileset>
|
|
</src>
|
|
</kotlin2js>
|
|
</target>
|
|
</project>
|