Skip to content
Snippets Groups Projects
Commit 86e84e88 authored by Philippe Suter's avatar Philippe Suter
Browse files

now supports scalatest

parent 6c6389f1
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,6 @@ project.scratch=true
project.name=FunCheck
sbt.version=0.7.4
project.version=1.0
def.scala.version=2.8.0
def.scala.version=2.7.7
build.scala.versions=2.8.0
project.initialize=false
import sbt._
class FunCheckProject(info: ProjectInfo) extends DefaultProject(info) with FileTasks {
val scalatest = "org.scalatest" % "scalatest" % "1.2"
override def outputDirectoryName = "bin"
override def dependencyPath = "lib"
override def shouldCheckOutputDirectories = false
......@@ -100,6 +102,7 @@ class FunCheckProject(info: ProjectInfo) extends DefaultProject(info) with FileT
class SetConstraintsProject(info: ProjectInfo) extends PersonalizedProject(info) {
override def outputPath = "bin" / "setconstraints"
override def mainScalaSourcePath = "src" / "setconstraints"
override def testScalaSourcePath = "src" / "setconstraints-tests"
override def unmanagedClasspath = super.unmanagedClasspath +++ purescala.jarPath
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment