mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
parent
a31f95d06d
commit
d33cc6c876
1 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
import org.apache.tools.ant.taskdefs.condition.Os
|
||||||
|
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
@ -57,7 +59,12 @@ android {
|
||||||
environment PATH: "${System.getenv("PATH")}${File.pathSeparator}${ndkExtraPath}"
|
environment PATH: "${System.getenv("PATH")}${File.pathSeparator}${ndkExtraPath}"
|
||||||
}
|
}
|
||||||
|
|
||||||
commandLine "${ndkDir}/ndk-build", '-C', file('src/main/jni').absolutePath //, 'V=1' // Enable V=1 for debugging messages.
|
// Enable V=1 for debugging messages.
|
||||||
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||||
|
commandLine "${ndkDir}/ndk-build.cmd", '-C', file('src/main/jni').absolutePath //, 'V=1'
|
||||||
|
} else {
|
||||||
|
commandLine "${ndkDir}/ndk-build", '-C', file('src/main/jni').absolutePath //, 'V=1'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue