88 lines
3.1 KiB
XML
Raw Normal View History

2015-06-15 17:47:35 -07:00
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="arrays"/>
<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="AlphabeticSearch" />
2016-01-25 18:05:55 -08:00
<jrun cls="ArrayCopying" />
2015-06-15 17:47:35 -07:00
<jrun cls="ArrayOfGenerics" />
<jrun cls="ArrayOptions" />
<jrun cls="ArraySearching" />
<jrun cls="AssemblingMultidimensionalArrays" />
<jrun cls="AutoboxingArrays" />
2016-01-25 18:05:55 -08:00
<jrun cls="BadMicroBenchmark" />
<jrun cls="BadMicroBenchmark2" />
<jrun cls="BadMicroBenchmark3" />
2015-12-15 11:47:04 -08:00
<jrun cls="CollectionComparison" />
2015-06-15 17:47:35 -07:00
<jrun cls="ComparatorTest" />
<jrun cls="ComparingArrays" />
<jrun cls="CompType" />
2016-01-25 18:05:55 -08:00
<jrun cls="CountUpward" />
2015-06-15 17:47:35 -07:00
<jrun cls="FillingArrays" />
<jrun cls="IceCream" />
2016-01-25 18:05:55 -08:00
<jrun cls="ModifyExisting" />
2015-06-15 17:47:35 -07:00
<jrun cls="MultidimensionalObjectArrays" />
<jrun cls="MultidimensionalPrimitiveArray" />
<jrun cls="MultiDimWrapperArray" />
2016-01-25 18:05:55 -08:00
<jrun cls="ParallelPrefix" />
<jrun cls="ParallelSetAll" />
<jrun cls="ParallelSort" />
2015-06-15 17:47:35 -07:00
<jrun cls="ParameterizedArrayType" />
2016-01-25 18:05:55 -08:00
<jrun cls="Prefix1" />
<jrun cls="Prefix2" />
2015-06-15 17:47:35 -07:00
<jrun cls="RaggedArray" />
<jrun cls="Reverse" />
2016-01-25 18:05:55 -08:00
<jrun cls="SimpleSetAll" />
<jrun cls="StreamFromArray" />
2015-06-15 17:47:35 -07:00
<jrun cls="StringSorting" />
2016-01-25 18:05:55 -08:00
<jrun cls="TestConvertTo" />
<jrun cls="TestCount" />
<jrun cls="TestRand" />
2015-06-15 17:47:35 -07:00
<jrun cls="ThreeDWithNew" />
</target>
2015-12-16 22:51:48 -08:00
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="AlphabeticSearch" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="ArrayCopying" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="ArrayOfGenerics" />
<jrunconsole cls="ArrayOptions" />
<jrunconsole cls="ArraySearching" />
<jrunconsole cls="AssemblingMultidimensionalArrays" />
<jrunconsole cls="AutoboxingArrays" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="BadMicroBenchmark" />
<jrunconsole cls="BadMicroBenchmark2" />
<jrunconsole cls="BadMicroBenchmark3" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="CollectionComparison" />
<jrunconsole cls="ComparatorTest" />
<jrunconsole cls="ComparingArrays" />
<jrunconsole cls="CompType" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="CountUpward" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="FillingArrays" />
<jrunconsole cls="IceCream" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="ModifyExisting" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="MultidimensionalObjectArrays" />
<jrunconsole cls="MultidimensionalPrimitiveArray" />
<jrunconsole cls="MultiDimWrapperArray" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="ParallelPrefix" />
<jrunconsole cls="ParallelSetAll" />
<jrunconsole cls="ParallelSort" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="ParameterizedArrayType" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="Prefix1" />
<jrunconsole cls="Prefix2" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="RaggedArray" />
<jrunconsole cls="Reverse" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="SimpleSetAll" />
<jrunconsole cls="StreamFromArray" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="StringSorting" />
2016-01-25 18:05:55 -08:00
<jrunconsole cls="TestConvertTo" />
<jrunconsole cls="TestCount" />
<jrunconsole cls="TestRand" />
2015-12-16 22:51:48 -08:00
<jrunconsole cls="ThreeDWithNew" />
</target>
</project>