samples/build.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:54:59 +0200
changeset 119 8147cafd007a
child 120 6715a003e910
permissions -rw-r--r--
Creating one master script that can clean and build all examples
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project name="apidesign.org" default="build" basedir=".">
     3     <dirset id="examples" dir=".">
     4         <include name="**/nbproject"/>
     5         <exclude name="apifest1/day3-intermezzo/**"/>
     6     </dirset>
     7     
     8     
     9     <target name="clean">
    10         <subant target="clean" antfile="../build.xml">
    11             <dirset refid="examples"/>
    12         </subant>
    13     </target>
    14 
    15     <target name="build">
    16         <ant dir="libs"/>
    17         <subant target="compile" antfile="../build.xml">
    18             <dirset refid="examples"/>
    19         </subant>
    20     </target>
    21     
    22 </project>