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.
19 lines
403 B
Groovy
19 lines
403 B
Groovy
6 years ago
|
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 << '-std=gnu++11' << "-Wno-write-strings"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|