Files
kotlin-fork/backend.native/debugger-tests/build.gradle
T
Ilya Matveev a2b6c71f73 [build] Move shared and gradle-plugin into separate gradle builds
Platform libs build will be changed by a separate commit
2018-01-17 16:58:44 +07:00

20 lines
548 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'
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'