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 cb05570 commit c32682aCopy full SHA for c32682a
primesieve-main/build.gradle.kts
@@ -23,5 +23,7 @@ dependencies {
23
24
application {
25
mainClass = "org.math.primesieve.PrimeSieveMain"
26
- applicationDefaultJvmArgs = listOf("-Djava.library.path="+project.rootDir+"/primesieve/build/libs/main/")
+ // 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")
29
}
0 commit comments