Skip to content

Commit 3419093

Browse files
committed
HMPP workaround so that we can use locally-build atomicfu
1 parent bfa6ba2 commit 3419093

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

kotlinx-coroutines-core/build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@ kotlin {
109109
}
110110
}
111111

112+
// HMPP workaround so that we can use locally-build atomicfu snapshot with a subset of targets
113+
kotlin.targets.withType(org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget)
114+
.matching { !project.ext.hostManager.isEnabled(it.konanTarget) }
115+
.all { compilations.all { it.compileDependencyFiles = files() } }
116+
112117
configurations {
113118
configureKotlinJvmPlatform(kotlinCompilerPluginClasspath)
114119
}

0 commit comments

Comments
 (0)