You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
apply plugin: 'cpp'
|
|
apply plugin: 'c'
|
|
|
|
model {
|
|
buildTypes {
|
|
release
|
|
}
|
|
|
|
components {
|
|
mkbootfs(NativeExecutableSpec) {
|
|
binaries.all {
|
|
cppCompiler.define "__ANDROID_VNDK__"
|
|
//cppCompiler.define 'CFIG_NO_FIX_STAT'
|
|
cppCompiler.args << "-Wno-write-strings"
|
|
}
|
|
}
|
|
}
|
|
}
|