[build] Add missing sources to published zip files (#8055)

Gradle publishing does not capture all of the source files that are used during a build. This should get most of them, and get it equivalent to what bazel pushes out.
This commit is contained in:
PJ Reiniger
2025-07-16 00:20:28 -04:00
committed by GitHub
parent 24e2d2d676
commit b85a0d5cf3
7 changed files with 30 additions and 0 deletions

View File

@@ -23,6 +23,9 @@ task cppSourcesZip(type: Zip) {
from("$buildDir/generated/cpp") {
into '/'
}
from("src/generated/main/native/cpp") {
into '/'
}
}
task cppHeadersZip(type: Zip) {