Files
kotlin-fork/backend.native/debugger-tests/build.gradle
T
2017-10-27 11:28:39 +03:00

20 lines
519 B
Groovy

apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile project(path: ':backend.native', configuration: 'cli_bc')
compile project(':shared')
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'