Files
picar/SwiftyCar/build.gradle
Piv de50b87d88 Bulk of swift code done for simple controller case.
Just need to get the server running, then can test
2020-05-13 21:17:51 +09:30

16 lines
384 B
Groovy

configurations{
swift {
canBeConsumed = false
canBeResolved = true
}
}
dependencies {
swift project(path: ':protobuf', configuration: 'swift')
}
task copySwiftCode(type: Copy, dependsOn: configurations.swift) {
// Copy python protobuf code from proto project.
from zipTree(configurations.swift.asPath)
into './Sources/SwiftyCar'
}