Hello, how to generate windows library ?? I Use Ma...
# multiplatform
v
Hello, how to generate windows library ?? I Use MacBook.
Copy code
mingwX64()
mingwX86()
....

val mingwX64Main by sourceSets.getting
val mingwX86Main by sourceSets.getting

// Parent Module
   val mingwMain by sourceSets.creating {
   dependsOn(commonMain)

   mingwX64Main.dependsOn(this)
   mingwX86Main.dependsOn(this)
}
But always get “Task :compileKotlinMingwX64 SKIPPED” & “Task :compileKotlinMingwX86 SKIPPED” no .dll generate Thanks. Slack Conversation
s
Windows is not supported as cross-compilation target. See https://youtrack.jetbrains.com/issue/KT-43024.
m
If you are using github for your source code, you can use windows virtual lboxes for the windows targets https://github.com/actions/virtual-environments/