You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
product-iots/modules/samples/build.xml

18 lines
467 B

<project name="IoTServerSamples" basedir="" default="deploy">
<macrodef name="iterate">
<attribute name="target"/>
<sequential>
<subant target="@{target}">
<fileset dir="" includes="*/build.xml"/>
</subant>
</sequential>
</macrodef>
<target name="deploy">
<iterate target="deploy"/>
</target>
<target name="clean">
<iterate target="clean"/>
</target>
</project>