-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (18 loc) · 757 Bytes
/
Copy pathbuild.sbt
File metadata and controls
24 lines (18 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
scalaVersion := "3.3.6" // A Long Term Support version.
name := "ally"
enablePlugins(ScalaNativePlugin)
// set to Debug for compilation details (Info is default)
logLevel := Level.Info
// import to add Scala Native options
import scala.scalanative.build._
// defaults set with common options shown
nativeConfig ~= { c =>
c.withLTO(LTO.none) // thin
.withMode(Mode.debug) // releaseFast
.withGC(GC.immix) // commix
.withLinkingOptions(Seq("-static"))
}
libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "2.4.0"
libraryDependencies += "com.lihaoyi" %%% "os-lib" % "0.11.4"
libraryDependencies += "com.monovore" %%% "decline" % "2.5.0"
libraryDependencies += "org.scalatest" %%% "scalatest" % "3.2.19" % Test