-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.sbt
44 lines (23 loc) · 1.08 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
name := "relite"
version := "0.1"
scalaVersion := "2.10.2-RC1"
//scalaBinaryVersion := "2.10.0"
scalaOrganization := "org.scala-lang.virtualized"
scalacOptions += "-Yvirtualize"
// tests are not thread safe
parallelExecution in Test := false
libraryDependencies += "org.scala-lang.virtualized" % "scala-compiler" % "2.10.0"
libraryDependencies += "EPFL" %% "lms" % "0.3-SNAPSHOT"
libraryDependencies += "stanford-ppl" %% "framework" % "0.1-SNAPSHOT"
libraryDependencies += "stanford-ppl" %% "runtime" % "0.1-SNAPSHOT"
libraryDependencies += "stanford-ppl" %% "optiml" % "0.1-SNAPSHOT"
libraryDependencies += "com.google.protobuf" % "protobuf-java" % "2.4.1"
scalaSource in Compile <<= baseDirectory(_ / "src")
scalaSource in Test <<= baseDirectory(_ / "test-src")
retrieveManaged := true
unmanagedBase <<= baseDirectory { base => base / "fastr" / "lib" }
unmanagedClasspath in Compile <++= baseDirectory map { base =>
Seq(base / "fastr" / "bin")
}
unmanagedClasspath in Test <++= (unmanagedClasspath in Compile)
// unmanagedClasspath in Run <++= (unmanagedClasspath in Compile)