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.
1 parent 43f743f commit 04971a4Copy full SHA for 04971a4
settings.gradle.kts
@@ -1,2 +1,8 @@
1
rootProject.name = "ffmpeg-static"
2
-include(":ffmpeg")
+
3
+val deployNative = if (extra.has("deploy.native")) {
4
+ extra.get("deploy.native")?.toString()?.toBoolean() ?: true
5
+} else true
6
+if (deployNative) {
7
+ include(":ffmpeg")
8
+}
0 commit comments