Files
Nim/examples/cross_calculator/android/custom_rules.xml
Grzegorz Adam Hankiewicz 3492bb7744 Adds android example using jni.
2012-09-08 22:41:18 +02:00

18 lines
461 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="custom_rules" default="debug">
<target name="nim">
<exec executable="scripts/nimbuild.sh" failonerror="true">
</exec>
</target>
<target name="jni">
<exec executable="scripts/jnibuild.sh" failonerror="true">
</exec>
</target>
<target name="ndk">
<exec executable="ndk-build" failonerror="true">
</exec>
</target>
<target name="-post-compile" depends="nim, jni, ndk">
</target>
</project>