[K/N] Fix kotlin-native-shared usage in build-tools

This commit is contained in:
Pavel Punegov
2022-05-23 13:20:10 +03:00
committed by Space
parent 83c2b3657f
commit cda0308760
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ dependencies {
implementation("io.ktor:ktor-client-cio:$ktorVersion")
api(project(":native:kotlin-native-utils"))
api(project(":kotlin-native:shared"))
api(project(":kotlin-native-shared"))
api(project(":kotlinx-metadata-klib"))
api(project(":kotlin-util-klib"))
implementation("gradle.plugin.com.github.johnrengelman:shadow:${rootProject.extra["versions.shadow"]}")
+2 -1
View File
@@ -784,5 +784,6 @@ if (buildProperties.isKotlinNativeEnabled) {
include ":kotlin-native-compiler-embeddable"
project(":kotlin-native-compiler-embeddable").projectDir = "$rootDir/kotlin-native/prepare/kotlin-native-embeddable-compiler" as File
include ':kotlin-native:build-tools'
include ':kotlin-native:shared'
include ':kotlin-native-shared'
project(":kotlin-native-shared").projectDir = "$rootDir/kotlin-native/shared" as File
}