forked from community/product-iots
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.
18 lines
467 B
18 lines
467 B
9 years ago
|
<project name="IoTServerSamples" basedir="" default="deploy">
|
||
9 years ago
|
<macrodef name="iterate">
|
||
|
<attribute name="target"/>
|
||
|
<sequential>
|
||
|
<subant target="@{target}">
|
||
9 years ago
|
<fileset dir="" includes="*/build.xml"/>
|
||
9 years ago
|
</subant>
|
||
|
</sequential>
|
||
|
</macrodef>
|
||
|
|
||
|
<target name="deploy">
|
||
|
<iterate target="deploy"/>
|
||
|
</target>
|
||
|
|
||
|
<target name="clean">
|
||
|
<iterate target="clean"/>
|
||
|
</target>
|
||
|
</project>
|