2015-12-16 22:51:48 -08:00

58 lines
1.8 KiB
XML

<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="operators"/>
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
<jrun cls="Assignment" />
<jrun cls="AutoInc" />
<jrun cls="BitManipulation" />
<jrun cls="Bool" />
<jrun cls="Casting" />
<jrun cls="CastingNumbers" />
<jrun cls="EqualsMethod" />
<jrun cls="EqualsMethod2" />
<jrun cls="Equivalence" />
<jrun cls="Exponents" />
<jrun cls="Literals" />
<jrun cls="MathOps" />
<jrun cls="Overflow" />
<jrun cls="PassObject" />
<jrun cls="Precedence" />
<jrun cls="RoundingNumbers" />
<jrun cls="ShortCircuit" />
<jrun cls="StringOperators" />
<jrun cls="TernaryIfElse" />
<jrun cls="Underscores" />
<jrun cls="URShift" />
</target>
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="Assignment" />
<jrunconsole cls="AutoInc" />
<jrunconsole cls="BitManipulation" />
<jrunconsole cls="Bool" />
<jrunconsole cls="Casting" />
<jrunconsole cls="CastingNumbers" />
<jrunconsole cls="EqualsMethod" />
<jrunconsole cls="EqualsMethod2" />
<jrunconsole cls="Equivalence" />
<jrunconsole cls="Exponents" />
<jrunconsole cls="Literals" />
<jrunconsole cls="MathOps" />
<jrunconsole cls="Overflow" />
<jrunconsole cls="PassObject" />
<jrunconsole cls="Precedence" />
<jrunconsole cls="RoundingNumbers" />
<jrunconsole cls="ShortCircuit" />
<jrunconsole cls="StringOperators" />
<jrunconsole cls="TernaryIfElse" />
<jrunconsole cls="Underscores" />
<jrunconsole cls="URShift" />
</target>
</project>