forked from namin/scalogno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (19 loc) · 783 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
26
27
28
29
30
31
32
33
name := "scalogno"
version := "0.1"
scalaOrganization := "org.scala-lang.virtualized"
scalaVersion := "2.10.2"
scalacOptions += "-Yvirtualize"
scalacOptions += "-Xexperimental"
scalacOptions += "-deprecation"
scalacOptions += "-unchecked"
scalacOptions += "-feature"
libraryDependencies += "org.scala-lang.virtualized" % "scala-compiler" % "2.10.2"
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test"
libraryDependencies += "junit" % "junit" % "4.11" % "test"
unmanagedJars in Compile += {
val platform = ("uname" !!) stripLineEnd
val extlib = Map("Linux" -> "so", "Darwin" -> "dylib")(platform)
file("../ScalaZ3/lib-bin/libscalaz3."+extlib)
}
libraryDependencies += "ch.epfl.lara" % "scalaz3_2.10" % "2.1"
parallelExecution in Test := false