-
Notifications
You must be signed in to change notification settings - Fork 621
/
Copy pathpackage.mill
47 lines (37 loc) · 1.14 KB
/
package.mill
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package build.svsim
import mill._
import mill.scalalib._
import mill.scalalib.scalafmt._
import mill.define.Cross
import build._
object `package` extends RootModule {
// https://github.com/com-lihaoyi/mill/issues/3693
object cross extends Cross[Svsim](v.scalaCrossVersions)
}
trait Svsim extends CrossSbtModule with HasCommonOptions with ScalafmtModule {
def millSourcePath = super.millSourcePath / os.up
override def scalacOptions = Task {
super.scalacOptions() ++
Option.when(!v.isScala3(crossScalaVersion))(
"-Xsource-features:case-apply-copy-access"
)
}
object test extends SbtTests with TestModule.ScalaTest with ScalafmtModule {
def ivyDeps = Agg(v.scalatest, v.scalacheck)
}
def clangFormatConfig = Task.Source {
Task.workspace / "svsim" / ".clang-format"
}
def cppSources = Task.Sources {
Task.workspace / "svsim" / "src" / "main" / "resources" / "simulation-driver.cpp"
}
def clangformat(args: String*) = Task.Command {
os.proc(
"clang-format",
"-i",
"--verbose",
s"--style=file:${clangFormatConfig().path}",
cppSources()
).call(cwd = Task.dest)
}
}