Skip to content
Snippets Groups Projects
Commit 717b611c authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Move build scripts in a dedicated folder

parent abb2f542
No related branches found
No related tags found
1 merge request!373Repo cleaning
......@@ -56,4 +56,4 @@ dependencies {
testImplementation "junit:junit:$rootProject.ext.junitVersion"
}
apply from: '../publish.gradle'
apply from: '../buildsystem/publish.gradle'
File moved
......@@ -24,7 +24,7 @@ while [ $# -gt 0 ]; do
shift
done
AVLC_SOURCED=1 . ./compile-libvlc.sh
AVLC_SOURCED=1 . buildsystem/compile-libvlc.sh
avlc_make_toolchain
################
......
#! /bin/sh
set -e
#############
# FUNCTIONS #
#############
......@@ -309,7 +310,7 @@ compile() {
mkdir -p $OUT_DBG_DIR
if [ "$BUILD_MEDIALIB" != 1 -o ! -d "libvlc/jni/libs/$1" ]; then
AVLC_SOURCED=1 . ./compile-libvlc.sh
AVLC_SOURCED=1 . buildsystem/compile-libvlc.sh
avlc_build
$NDK_BUILD -C libvlc \
......@@ -332,7 +333,7 @@ compile() {
fi
if [ "$NO_ML" != 1 ]; then
ANDROID_ABI=$ANDROID_ABI RELEASE=$RELEASE ./compile-medialibrary.sh
ANDROID_ABI=$ANDROID_ABI RELEASE=$RELEASE buildsystem/compile-medialibrary.sh
if [ "$copy_tmp" = "--copy-tmp=medialibrary" ];then
cp -r medialibrary/jni/libs/${ANDROID_ABI} build/tmp
fi
......
File moved
File moved
......@@ -75,4 +75,4 @@ def vlcRevision() {
return vlc.toString()
}
apply from: '../publish.gradle'
apply from: '../buildsystem/publish.gradle'
......@@ -103,4 +103,4 @@ dependencies {
}
apply from: '../publish.gradle'
apply from: '../buildsystem/publish.gradle'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment