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.
21 lines
472 B
Groovy
21 lines
472 B
Groovy
apply plugin: "c"
|
|
apply plugin: "cpp"
|
|
|
|
model {
|
|
buildTypes {
|
|
release
|
|
}
|
|
|
|
components {
|
|
avb(NativeLibrarySpec) {
|
|
binaries.all {
|
|
cCompiler.define "_FILE_OFFSET_BITS", "64"
|
|
cCompiler.define "_POSIX_C_SOURCE", "199309L"
|
|
cCompiler.define "AVB_ENABLE_DEBUG"
|
|
cCompiler.define "AVB_COMPILATION"
|
|
cCompiler.args << "-Wall" << "-g"
|
|
}
|
|
}
|
|
}
|
|
}
|