-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (20 loc) · 849 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import Dependencies._
ThisBuild / scalaVersion := "3.1.0"
ThisBuild / version := "0.1.0"
ThisBuild / organization := "net.like-a-boss"
ThisBuild / organizationName := "tsetlin"
lazy val core = (project in file("core")).settings(
name := "tsetlin",
libraryDependencies ++= List(
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.3"))
lazy val tests = (project in file("tests")).settings(name := "tests").dependsOn(core)
/*
Tracing options for HotSpot
ThisBuild / fork := true
ThisBuild / run / javaOptions += "--add-modules=jdk.incubator.vector"
ThisBuild / run / javaOptions += "-XX:+UnlockDiagnosticVMOptions"
ThisBuild / run / javaOptions += "-XX:+PrintAssembly"
*/
lazy val root = (project in file("."))
.aggregate(core, tests).settings(
Compile / run := (core / Compile / run).evaluated)