Skip to content

Commit c32682a

Browse files
committed
+ Just set both targets
1 parent cb05570 commit c32682a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

primesieve-main/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,7 @@ dependencies {
2323

2424
application {
2525
mainClass = "org.math.primesieve.PrimeSieveMain"
26-
applicationDefaultJvmArgs = listOf("-Djava.library.path="+project.rootDir+"/primesieve/build/libs/main/")
26+
// XXX Normally you wouldn't set multiple targets here, this is just to get things working on both targets
27+
applicationDefaultJvmArgs = listOf("-Djava.library.path="+project.rootDir+"/primesieve/build/libs/main/macos:"+
28+
project.rootDir+"/primesieve/build/libs/main/linux")
2729
}

0 commit comments

Comments
 (0)