Files
kotlin-fork/kotlin-native/utilities/cli-runner/build.gradle
T
Yahor Berdnikau 6b19b8b9d0 [Repo] Don't use kotlinOptions in repo build scripts
^KT-63419 In Progress
2024-02-22 14:48:10 +00:00

26 lines
878 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 {
compilerOptions.freeCompilerArgs.add('-Xskip-metadata-version-check')
}
dependencies {
implementation project(":kotlin-stdlib")
implementation project(":kotlin-stdlib-common")
implementation project(':kotlin-native:backend.native')
implementation project(":compiler:cli-common")
implementation project(':kotlin-native:Interop:StubGenerator')
implementation project(':kotlin-native:klib')
implementation project(path: ":kotlin-native:endorsedLibraries:kotlinx.cli", configuration: "jvmRuntimeElements")
implementation project(":native:kotlin-native-utils")
}