I ask here because it seems like a very basic ques...
# getting-started
s
I ask here because it seems like a very basic question... What can I do so that my compiled Windows EXE does not have the name "POSIX WinThreads for Windows" but a one I assign? What property do i need? This is my build.gradle.kts
Copy code
plugins {
    kotlin("multiplatform")
}

kotlin {

    mingwX64("native") {
        binaries {
            executable()
        }
    }
}

tasks.withType<Wrapper> {
    gradleVersion = "7.2"
    distributionType = Wrapper.DistributionType.BIN
}
Ok, that's a way to do it and I managed it by copying from the sample... But boy, that looks really unrealieable.