Move OsmAnd java core project back to android repository for maintainance reasons
This commit is contained in:
parent
f788e8eb47
commit
35e2c4b20f
1 changed files with 29 additions and 0 deletions
29
OsmAnd-java/collect_libs.sh
Normal file
29
OsmAnd-java/collect_libs.sh
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
#!/bin/bash
|
||||||
|
SCRIPT_LOC="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
ROOT_LOC="$SCRIPT_LOC/../.."
|
||||||
|
function copyLibs {
|
||||||
|
if [ -d "$ROOT_LOC/binaries/$1/$2" ]; then
|
||||||
|
echo "Copy binaries $1 $2";
|
||||||
|
cp "$ROOT_LOC"/binaries/$1/$2/libOsmAndJNI.$4 bin/OsmAndJNI-$1-$3.lib
|
||||||
|
cp "$ROOT_LOC"/binaries/$1/$2/libOsmAndCoreUtils.$4 bin/OsmAndCoreUtils-$1-$3.lib
|
||||||
|
cp "$ROOT_LOC"/binaries/$1/$2/libOsmAndCore.$4 bin/OsmAndCore-$1-$3.lib
|
||||||
|
cp "$ROOT_LOC"/core/externals/qtbase-desktop/upstream.patched.$1.$2/lib/libQt5Core.$4.5.0.2 bin/Qt5Core-$1-$3.lib
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function compile {
|
||||||
|
"$ROOT_LOC/core/externals/configure.sh"
|
||||||
|
"$ROOT_LOC/core/externals/qtbase-desktop/build.sh"
|
||||||
|
if [ ! -d "$ROOT_LOC/baked/amd64-linux-gcc-amd64-linux-gcc" ]; then
|
||||||
|
"$ROOT_LOC/build/amd64-linux-gcc.sh"
|
||||||
|
fi
|
||||||
|
(cd "$ROOT_LOC/baked/amd64-linux-gcc-amd64-linux-gcc" && make -j`nproc`)
|
||||||
|
if [ ! -d "$ROOT_LOC/baked/i686-linux-gcc-i686-linux-gcc" ]; then
|
||||||
|
"$ROOT_LOC/build/i686-linux-gcc.sh"
|
||||||
|
fi
|
||||||
|
(cd "$ROOT_LOC/baked/i686-linux-gcc-i686-linux-gcc" && make -j`nproc`)
|
||||||
|
}
|
||||||
|
|
||||||
|
compile
|
||||||
|
copyLibs linux amd64 amd64 so
|
||||||
|
copyLibs linux i686 x86 so
|
Loading…
Reference in a new issue