We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6de0f9 commit 2aa5a5eCopy full SHA for 2aa5a5e
shared/build.gradle.kts
@@ -22,13 +22,13 @@ tasks.create<Delete>("disableKRes") {
22
23
tasks.all {
24
if (name.contains("mingwX64", ignoreCase = true)) {
25
- File(projectDir, "temp/$name").createNewFile()
26
onlyIf { false }
27
}
28
29
30
tasks.create<Delete>("disableBootstrap") {
31
- dependsOn(tasks.getByName("compileKotlin"))
+ mustRunAfter("compileKotlinMingwX64")
+// dependsOn(tasks.getByName("compileKotlinMingwX64"))
32
beforeEvaluate { File(projectDir, "build/platforms/native-desktop/bootstrap.kt").delete() }
33
34
0 commit comments