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.
binaries
1 parent d7c2ea2 commit 0b300fdCopy full SHA for 0b300fd
build-support/src/main/kotlin/aws/sdk/kotlin/gradle/crt/NativeUtils.kt
@@ -50,14 +50,14 @@ private val KotlinNativeTarget.isWindows: Boolean
50
internal fun Project.disable(knTarget: KotlinNativeTarget) {
51
logger.warn("disabling Kotlin/Native target: ${knTarget.name}")
52
knTarget.apply {
53
+ binaries.all {
54
+ linkTaskProvider.configure { enabled = false }
55
+ }
56
compilations.all {
57
cinterops.all {
58
tasks.named(interopProcessingTaskName).configure { enabled = false }
59
}
60
compileTaskProvider.configure { enabled = false }
- binaries.all {
- linkTaskProvider.configure { enabled = false }
- }
61
62
mavenPublication {
63
tasks.withType<AbstractPublishToMaven>().configureEach {
0 commit comments