mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 19:34:08 +01:00
6996bead09
This makes the build work even if "java" is not in the path.
11 lines
429 B
XML
11 lines
429 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<project default="build_eco" name="Build assets/eco.dat">
|
|
<target name="build_eco">
|
|
<java classpath="bin/classes"
|
|
classname="org.petero.droidfish.buildtools.EcoBuilder">
|
|
<arg value="${basedir}/src/org/petero/droidfish/buildtools/eco.pgn"/>
|
|
<arg value="${basedir}/assets/eco.dat"/>
|
|
</java>
|
|
</target>
|
|
</project>
|