Skip to content

Commit

Permalink
Add back missing check if coroutine interop is enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
TadeasKriz authored Nov 13, 2023
1 parent b2ec06a commit 73e41b4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ import org.jetbrains.kotlin.konan.target.KonanTarget
import org.jetbrains.kotlin.konan.target.presetName

internal fun SkieTarget.addDependencyOnSkieRuntime() {
if (!project.isCoroutinesInteropEnabled) {
return
}

val configurationNames = when (this) {
is SkieTarget.TargetBinary -> listOfNotNull(
binary.compilation.apiConfigurationName,
Expand Down

0 comments on commit 73e41b4

Please sign in to comment.