mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 11:31:33 +01:00
14 lines
484 B
XML
14 lines
484 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<project default="build_binbook" name="Build book.bin">
|
|
<target name="build_binbook">
|
|
<java classname="chess.Book">
|
|
<classpath>
|
|
<pathelement location="bin"/>
|
|
<pathelement location="../DroidFish/bin/classes"/>
|
|
</classpath>
|
|
<arg value="${basedir}/src/book.txt"/>
|
|
<arg value="${basedir}/src/book.bin"/>
|
|
</java>
|
|
</target>
|
|
</project>
|