From 19c156e61b9c86080a634fdd460aed611f2408e0 Mon Sep 17 00:00:00 2001 From: Albert Chen Date: Fri, 1 Feb 2019 15:04:03 -0800 Subject: [PATCH] add build.wake and build.sc --- build.wake | 3 +++ sifiveblocks.sc | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 build.wake create mode 100644 sifiveblocks.sc diff --git a/build.wake b/build.wake new file mode 100644 index 0000000..2e536b1 --- /dev/null +++ b/build.wake @@ -0,0 +1,3 @@ +global def sifiveBlocksProject = millScalaProject "SifiveBlocks" here (rocketchipProject, Nil) "sifiveblocks" "SifiveBlocksBase" + +publish scalaProjects = sifiveBlocksProject diff --git a/sifiveblocks.sc b/sifiveblocks.sc new file mode 100644 index 0000000..b6da764 --- /dev/null +++ b/sifiveblocks.sc @@ -0,0 +1,9 @@ +import mill._ +import mill.scalalib._ +import ammonite.ops._ + +import $file.^.`scala-wake`.common, common._ + +trait SifiveBlocksBase extends ScalaModule with WakeModule with CommonOptions { + def millSourcePath = os.pwd +}