We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfdd938 commit 3f70327Copy full SHA for 3f70327
1 file changed
build.gradle.kts
@@ -48,6 +48,16 @@ kotlin {
48
49
}
50
51
+val buildWin: TaskProvider<Exec> = tasks.register<Exec>("buildNativeWin") {
52
+ onlyIf { System.getProperty("os.name").startsWith("Windows") }
53
+ workingDir(rootDir.resolve("winlib"))
54
+ commandLine("cmd", "/c", "build.bat")
55
+}
56
+
57
+tasks.register("buildNativeLibraries") {
58
+ dependsOn(buildWin)
59
60
61
mavenPublishing {
62
coordinates(
63
groupId = "io.github.kdroidfilter",
0 commit comments