Add ExecutionOptionsManager

Taken from https://github.com/ucb-bar/firrtl
This commit is contained in:
Chick Markley
2016-10-24 21:00:14 -07:00
committed by Jack
parent 52e8b6b04a
commit a1c7742a57
5 changed files with 190 additions and 0 deletions

1
project/build.properties Normal file
View File

@@ -0,0 +1 @@
sbt.version=0.13.12

View File

@@ -0,0 +1,16 @@
import sbt._
import Keys._
object Dependencies {
val scalatestVersion = "3.0.0"
val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion % "test"
val scoptVersion = "3.4.0"
val scopt = "com.github.scopt" %% "scopt" % scoptVersion
val commonDependencies: Seq[ModuleID] = Seq(
scalatest
)
val executionoptionsDependencies: Seq[ModuleID] = Seq(
scopt
)
}