vtm/jni/build.xml
Hannes Janetzek 10e186780c jni stuff
2014-05-16 17:55:45 +02:00

35 lines
1.1 KiB
XML

<project name="vtm-jni-natives" basedir="." default="all">
<target name="clean">
</target>
<target name="compile-natives">
</target>
<target name="pack-natives">
<jar destfile="../libs/vtm-jni-natives.jar">
<manifest>
<!-- Who is building this jar? -->
<attribute name="Built-By" value="${user.name}" />
<!-- Information about the program itself -->
<attribute name="Implementation-Vendor" value="VTM" />
<attribute name="Implementation-Title" value="VTM" />
<attribute name="Implementation-Version" value="0.5.9" />
</manifest>
<fileset dir="../libs/linux64" includes="libvtm-jni64.so" />
<!--
<fileset dir="../libs/macosx32" includes="libvtm-jni.dylib"/>
<fileset dir="../libs/macosx64" includes="libvtm-jni64.dylib"/>
<fileset dir="../libs/windows32" includes="gdx.dll"/>
<fileset dir="../libs/windows64" includes="gdx64.dll"/>
<fileset dir="../libs/linux32" includes="libvtm-jni.so"/>
-->
</jar>
</target>
<target name="all" depends="compile-natives,pack-natives" />
</project>