Files
kotlin-fork/runtime/build.gradle
T
Svyatoslav Scherbina db1853f627 runtime: remove unused test
to simplify build configuration
2016-11-02 17:02:14 +07:00

18 lines
441 B
Groovy

import org.jetbrains.kotlin.CompileCppToBitcode
// TODO: consider using some Gradle plugins to build and test
task build(type: CompileCppToBitcode) {
name 'runtime'
srcRoot file('src/main')
dependsOn ':common:compileHash'
compilerArgs '-I' + project.file('../common/src/hash/headers') // TODO: copy-pasted from 'common'
linkerArgs project.file('../common/build/hash.bc').path
}
task clean << {
delete buildDir
}