blob: 45992419fda0d87a639a178836ef099143ad4e09 [file] [log] [blame]
plugins {
id "cpp"
}
model {
components {
etrice_runtime_cpp(NativeLibrarySpec) {
sources.cpp {
source {
srcDirs = ['src', 'src-gen']
include '**/*.cpp'
}
exportedHeaders {
srcDirs = ['src', 'src-gen']
}
lib project: ':runtime:org.eclipse.etrice.runtime.c', library: 'etrice_runtime_c', linkage: 'api'
}
binaries {
withType(SharedLibraryBinarySpec) { buildable = false }
all { cppCompiler.args '-g3' }
}
}
}
}