progs/display/build.sc
author update
Mon, 05 Oct 2020 17:46:12 +0100
changeset 774 a9fcd8afcd6a
parent 738 03f46065ef04
child 873 c885ed3c39cf
permissions -rw-r--r--
updated

import mill._
import scalalib._

val baseDir = build.millSourcePath


object app extends ScalaModule {
  def scalaVersion = "2.13.3"

  def ivyDeps = Agg(
    ivy"com.lihaoyi::cask:0.6.7",
    ivy"com.lihaoyi::scalatags:0.9.1"
  )

  override def sources = T.sources(baseDir / "display.scala")
  //override def resources = T.sources(baseDir / "static")

}