44 lines
1.9 KiB
XML
44 lines
1.9 KiB
XML
<?xml version="1.0" ?>
|
|
|
|
<project default="run">
|
|
<property name="chapter" value="polymorphism"/>
|
|
<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="CovariantReturn" />
|
|
<jrun cls="FieldAccess" />
|
|
<jrun cls="polymorphism.Frog" dirpath="../polymorphism" />
|
|
<jrun cls="PolyConstructors" />
|
|
<jrun cls="polymorphism.PrivateOverride" dirpath="../polymorphism" />
|
|
<jrun cls="ReferenceCounting" />
|
|
<jrun cls="RTTI" failOnError='false' msg='* Exception was Expected *' />
|
|
<jrun cls="polymorphism.Sandwich" dirpath="../polymorphism" />
|
|
<jrun cls="Shapes" />
|
|
<jrun cls="StaticPolymorphism" />
|
|
<jrun cls="Transmogrify" />
|
|
<jrun cls="polymorphism.music.Music" dirpath="../polymorphism/music" />
|
|
<jrun cls="polymorphism.music.Music2" dirpath="../polymorphism/music" />
|
|
<jrun cls="polymorphism.music3.Music3" dirpath="../polymorphism/music3" />
|
|
</target>
|
|
|
|
<target name="runconsole" description="Compile and run" depends="build">
|
|
<jrunconsole cls="CovariantReturn" />
|
|
<jrunconsole cls="FieldAccess" />
|
|
<jrunconsole cls="polymorphism.Frog" dirpath="../polymorphism" />
|
|
<jrunconsole cls="PolyConstructors" />
|
|
<jrunconsole cls="polymorphism.PrivateOverride" dirpath="../polymorphism" />
|
|
<jrunconsole cls="ReferenceCounting" />
|
|
<jrunconsole cls="RTTI" failOnError='false' msg='* Exception was Expected *' />
|
|
<jrunconsole cls="polymorphism.Sandwich" dirpath="../polymorphism" />
|
|
<jrunconsole cls="Shapes" />
|
|
<jrunconsole cls="StaticPolymorphism" />
|
|
<jrunconsole cls="Transmogrify" />
|
|
<jrunconsole cls="polymorphism.music.Music" dirpath="../polymorphism/music" />
|
|
<jrunconsole cls="polymorphism.music.Music2" dirpath="../polymorphism/music" />
|
|
<jrunconsole cls="polymorphism.music3.Music3" dirpath="../polymorphism/music3" />
|
|
</target>
|
|
|
|
|
|
</project> |