mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 11:31:33 +01:00
e0f8aef6d6
Use java ant task to create book.bin and eco.dat so that /usr/bin/java does not have to be hardcoded.
10 lines
285 B
XML
10 lines
285 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<project default="build_binbook" name="Build assets/eco.dat">
|
|
<target name="build_binbook">
|
|
<java classpath="bin"
|
|
classname="chess.Book"
|
|
fork="yes">
|
|
</java>
|
|
</target>
|
|
</project>
|