Proto source sets that this source set extends from. All proto files from protoSourceSet will be used for code generation. All imports protoSourceSet will be included as well.
Example:
kotlin.sourceSets {
val someProto = create("someProto")
commonMain {
proto {
extendsFrom(protoSourceSets.getByName("someProto"))
}
}
}Content copied to clipboard