Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Samples/SwiftKitSampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
//
//===----------------------------------------------------------------------===//

import org.swift.swiftkit.gradle.BuildUtils

plugins {
id("build-logic.java-application-conventions")
}
Expand Down Expand Up @@ -82,10 +84,7 @@ application {
"--enable-native-access=ALL-UNNAMED",

// Include the library paths where our dylibs are that we want to load and call
"-Djava.library.path=" + [
"$rootDir/.build/arm64-apple-macosx/debug/",
"/usr/lib/swift/"
].join(":"),
"-Djava.library.path=" + BuildUtils.javaLibraryPaths().join(":"),

// Enable tracing downcalls (to Swift)
"-Djextract.trace.downcalls=true"
Expand Down