| /* |
| * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license |
| * that can be found in the LICENSE file. |
| */ |
| |
| buildscript { |
| apply from: "$rootDir/kotlin-native/gradle/kotlinGradlePlugin.gradle" |
| } |
| |
| apply plugin: 'kotlin' |
| |
| compileKotlin { |
| kotlinOptions.freeCompilerArgs += ['-Xskip-prerelease-check'] |
| } |
| |
| repositories { |
| maven { |
| url project.bootstrapKotlinRepo |
| } |
| } |
| |
| dependencies { |
| implementation project(":kotlin-stdlib") |
| implementation project(path: ':kotlin-native:backend.native', configuration: 'cli_bcApiElements') |
| implementation project(":kotlin-native:utilities:basic-utils") |
| testImplementation libs.junit4 |
| testImplementation project(":kotlin-test:kotlin-test-junit") |
| } |
| |
| test { |
| dependsOn 'cleanTest' |
| // Specify a path to the distribution that is used in the tests. |
| } |