f30c840d1c
to reuse in compiler
17 lines
258 B
Groovy
17 lines
258 B
Groovy
import org.jetbrains.kotlin.CompileCppToBitcode
|
|
|
|
// TODO: consider using some Gradle plugins to build and test
|
|
|
|
|
|
task compileHash(type: CompileCppToBitcode) {
|
|
name 'hash'
|
|
}
|
|
|
|
task build {
|
|
dependsOn compileHash
|
|
}
|
|
|
|
task clean << {
|
|
delete buildDir
|
|
}
|