Files
kotlin-fork/common/build.gradle
T
Svyatoslav Scherbina f30c840d1c runtime: move hash functions to newly created subproject
to reuse in compiler
2016-10-13 17:29:02 +03:00

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
}