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.
Android_boot_image_editor/mkbootfs/build.gradle

19 lines
403 B
Groovy

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"
}
}
}
}