Files
kotlin-fork/backend.native/debugger-tests/build.gradle
T
2018-01-17 16:58:44 +07:00

20 lines
562 B
Groovy

apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$buildKotlinVersion"
compile project(path: ':backend.native', configuration: 'cli_bc')
compile "org.jetbrains.kotlin:kotlin-native-shared:$konanVersion"
compile 'junit:junit:4.12'
}
test {
testLogging { exceptionFormat = 'full' }
def dist = project.rootProject.file("dist").canonicalPath
systemProperties = [
'konan.home': dist,
'java.library.path': "$dist/konan/nativelib"
]
}
test.dependsOn ':dist'