First toolflow version

This commit is contained in:
2025-09-30 18:20:38 +02:00
parent b1bbd48d19
commit 2d48221e45
15 changed files with 305 additions and 0 deletions

15
toolflow/build.sbt Normal file
View File

@@ -0,0 +1,15 @@
val scala3Version = "3.7.3"
lazy val root = project
.in(file("."))
.enablePlugins(JavaAppPackaging)
.settings(
name := "tgc-hammer",
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
libraryDependencies += "org.rogach" %% "scallop" % "5.2.0",
libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.11.5",
libraryDependencies += "org.scalameta" %% "munit" % "1.2.0" % Test
)