File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ application {
8080 applicationDefaultJvmArgs = listOf (
8181 " --enable-native-access=ALL-UNNAMED" ,
8282 // Include the library paths where our dylibs are that we want to load and call
83- " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(" : " ),
83+ " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(File .pathSeparator ),
8484 // Enable tracing downcalls (to Swift)
8585 " -Djextract.trace.downcalls=true"
8686 )
9595
9696 jvmArgsAppend = listOf (
9797 " --enable-native-access=ALL-UNNAMED" ,
98- " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(" : " ),
98+ " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(File .pathSeparator ),
9999 // Enable tracing downcalls (to Swift)
100100 " -Djextract.trace.downcalls=false"
101101 )
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ application {
9292 applicationDefaultJvmArgs = listOf (
9393 " --enable-native-access=ALL-UNNAMED" ,
9494 // Include the library paths where our dylibs are that we want to load and call
95- " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(" : " ),
95+ " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(File .pathSeparator ),
9696 // Enable tracing downcalls (to Swift)
9797 " -Djextract.trace.downcalls=true"
9898 )
@@ -107,7 +107,7 @@ jmh {
107107
108108 jvmArgsAppend = listOf (
109109 " --enable-native-access=ALL-UNNAMED" ,
110- " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(" : " ),
110+ " -Djava.library.path=" + javaLibraryPaths(project.projectDir).joinToString(File .pathSeparator ),
111111 // Enable tracing downcalls (to Swift)
112112 " -Djextract.trace.downcalls=false"
113113 )
You can’t perform that action at this time.
0 commit comments