runtime: move hash functions to newly created subproject

to reuse in compiler
This commit is contained in:
Svyatoslav Scherbina
2016-10-13 17:19:19 +03:00
parent 2f004edff7
commit f30c840d1c
7 changed files with 20 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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
}