Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
mio-19 committed Oct 25, 2024
1 parent 85950a7 commit 04f0a78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1201,16 +1201,18 @@ lazy val buildTool = crossProject(JVMPlatform)
)
)

lazy val eval = crossProject(JVMPlatform)
lazy val eval = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Pure)
.crossType(CrossType.Full)
.in(file("eval"))
.dependsOn(core)
.dependsOn(platform)
.settings(commonSettings)
// https://github.com/b-studios/scala-graal-truffle-example/blob/c2747a6eece156f878c5b934116aaa00a2cd6311/build.sbt
.settings(
name := "eval",
assembly / assemblyOutputPath := file("target") / "chester-eval.jar",
assembly / assemblyOutputPath := file("target") / "chester-eval.jar"
)
.jvmSettings(
assembly / test := {},
assembly / assemblyExcludedJars := {
val cp = (assembly / fullClasspath).value
Expand Down
File renamed without changes.

0 comments on commit 04f0a78

Please sign in to comment.