We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a85efe commit 1620c5dCopy full SHA for 1620c5d
1 file changed
mediaplayer/build.gradle.kts
@@ -197,14 +197,12 @@ val buildNativeWindows by tasks.registering(Exec::class) {
197
commandLine("cmd", "/c", nativeDir.file("build.bat").asFile.absolutePath)
198
}
199
200
-tasks.register("buildNativeLibraries") {
201
- group = "build"
202
- description = "Builds all native libraries (macOS + Windows)"
+tasks.named("jvmProcessResources") {
203
dependsOn(buildNativeMacOs, buildNativeWindows)
204
205
206
tasks.configureEach {
207
- if (name == "jvmProcessResources" || name == "sourcesJar") {
+ if (name == "sourcesJar") {
208
209
210
0 commit comments