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

16
build.sbt Normal file
View File

@@ -0,0 +1,16 @@
// See LICENSE for license details.
import Dependencies._
lazy val commonSettings = Seq(
organization := "edu.berkeley.cs",
version := "0.1-SNAPSHOT",
scalaVersion := "2.11.8",
libraryDependencies ++= commonDependencies
)
lazy val executionoptions = (project in file("executionoptions"))
.settings(commonSettings)
.settings(
libraryDependencies ++= executionoptionsDependencies
)