We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f1e17b commit 623869dCopy full SHA for 623869d
build-plugins/kmp-conventions/src/main/kotlin/aws/sdk/kotlin/gradle/kmp/ConfigureTargets.kt
@@ -33,7 +33,7 @@ val Project.hasCommon: Boolean get() = files.any {
33
34
// always configured with common
35
val Project.hasJvm: Boolean get() = hasCommon || hasJvmAndNative || files.any { it.name == "jvm" }
36
-val Project.hasNative: Boolean get() = hasCommon || files.any { it.name == "native" }
+val Project.hasNative: Boolean get() = hasCommon || hasJvmAndNative || files.any { it.name == "native" }
37
val Project.hasJs: Boolean get() = hasCommon || files.any { it.name == "js" }
38
val Project.hasJvmAndNative: Boolean get() = hasCommon || files.any { it.name == "jvmAndNative" }
39
0 commit comments