Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrew Comminos <andrewcomminos@gmail.com>2013-12-23 11:24:48 +0400
committerAndrew Comminos <andrewcomminos@gmail.com>2013-12-23 11:24:48 +0400
commit5927af7f01fad0a6e0e2155b097032e8985524d3 (patch)
tree8a54dc530de709a55f3863de1cfb316afdde4907 /tools
parent115b08f93ea5c8b44c5f3c66ab6d971a3a61f940 (diff)
Updated project structure so native libs compile properly on the latest
gradle plugin.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/jnigen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/jnigen.sh b/tools/jnigen.sh
index 239dc84..e715908 100755
--- a/tools/jnigen.sh
+++ b/tools/jnigen.sh
@@ -5,11 +5,11 @@ if [ "$1" == "--build" ]; then
./gradlew assembleDebug
fi
-java -jar tools/javacpp-0.6.jar -cp build/classes/debug/ -d src/main/jni/ -nocompile com.morlunk.jumble.audio.javacpp.*
+java -jar tools/javacpp-0.6.jar -cp build/classes/debug/ -d jni/ -nocompile com.morlunk.jumble.audio.javacpp.*
if [ "$1" == "--build" ]; then
# Build native libs
- pushd src/main/jni
+ pushd jni
ndk-build
popd
fi