Add python car module as subproject

This commit is contained in:
Piv
2020-04-18 17:57:00 +09:30
parent ed09012705
commit b9254d89f8

16
build.gradle Normal file
View File

@@ -0,0 +1,16 @@
configurations {
python {
canBeResolved = true
canBeConsumed = false
}
}
dependencies {
python project(path: ':protobuf', configuration: 'python')
}
task copyPythonCode(type: Copy, dependsOn: configurations.python){
// Copy python protobuf code from proto project.
from zipTree(configurations.python.asPath)
into '.'
}