Proto files from protoSourceSet will be available as import, but will not be used for code generation.
Example:
kotlin.sourceSets {
val someProto = create("someProto")
commonMain {
proto {
importsFrom(protoSourceSets.getByName("someProto"))
}
}
}Content copied to clipboard