c85c3ac123
(cherry picked from commit 7d0775f7e69ab900200bcf1fa78b94d68e6bd4f6)
26 lines
731 B
Groovy
26 lines
731 B
Groovy
/*
|
|
* 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-metadata-version-check']
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation project(":kotlin-stdlib")
|
|
implementation project(":kotlin-stdlib-common")
|
|
implementation project(':kotlin-native:backend.native')
|
|
implementation project(':kotlin-native:Interop:StubGenerator')
|
|
implementation project(':kotlin-native:klib')
|
|
implementation project(":kotlin-native:utilities:basic-utils")
|
|
}
|