27 lines
1.0 KiB
XML
27 lines
1.0 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>
|
||
|
|
||
|
</project>
|