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 c57088c commit f9c84cbCopy full SHA for f9c84cb
Samples/SwiftKitSampleApp/build.gradle
@@ -12,6 +12,8 @@
12
//
13
//===----------------------------------------------------------------------===//
14
15
+import org.swift.swiftkit.gradle.BuildUtils
16
+
17
plugins {
18
id("build-logic.java-application-conventions")
19
}
@@ -82,10 +84,7 @@ application {
82
84
"--enable-native-access=ALL-UNNAMED",
83
85
86
// Include the library paths where our dylibs are that we want to load and call
- "-Djava.library.path=" + [
- "$rootDir/.build/arm64-apple-macosx/debug/",
87
- "/usr/lib/swift/"
88
- ].join(":"),
+ "-Djava.library.path=" + BuildUtils.javaLibraryPaths().join(":"),
89
90
// Enable tracing downcalls (to Swift)
91
"-Djextract.trace.downcalls=true"
0 commit comments