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

23 lines
418 B
Bash
Executable File

#!/bin/sh
# Force errors to fail script.
set -e
# If we are running from inside the scripts subdir, get out.
if [ ! -d src ]
then
cd ..
fi
# Ok, are we out now?
if [ -d src ]
then
javah -classpath bin/classes \
-o jni/backend-jni.h \
com.github.nimrod.crosscalculator.CrossCalculator
else
echo "Uh oh, bin/classes directory not found?"
echo "Try compiling your java code, or opening in eclipse."
exit 1
fi