2016-11-07 22:56:27 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2017-05-26 10:54:50 +02:00
|
|
|
<project default="build_binbook" name="Build book.bin">
|
2016-11-07 22:56:27 +01:00
|
|
|
<target name="build_binbook">
|
2017-01-03 19:49:58 +01:00
|
|
|
<java classname="chess.Book">
|
|
|
|
<classpath>
|
|
|
|
<pathelement location="bin"/>
|
2017-01-03 19:58:30 +01:00
|
|
|
<pathelement location="../DroidFish/bin/classes"/>
|
2017-01-03 19:49:58 +01:00
|
|
|
</classpath>
|
2016-11-12 16:41:41 +01:00
|
|
|
<arg value="${basedir}/src/book.txt"/>
|
|
|
|
<arg value="${basedir}/src/book.bin"/>
|
2016-11-07 22:56:27 +01:00
|
|
|
</java>
|
|
|
|
</target>
|
|
|
|
</project>
|