summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJack Koenig2021-02-09 17:12:37 -0800
committerJack Koenig2021-02-09 17:28:07 -0800
commit53b620478ddab1faa96512e473fa198f7f1fcf50 (patch)
tree3cfa0415cc3b8a3f9c382095fd15ceda3f6f179e /build.sbt
parent2ed343e2305b7c22000f3f46fa81d73a369907eb (diff)
Add no-plugin-tests for testing Chisel without the compiler plugin
This is a new SBT build unit that symlinks in some files from the normal chisel project tests, but builds them without the compiler plugin.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index fc19d2ad..5c051ff5 100644
--- a/build.sbt
+++ b/build.sbt
@@ -201,6 +201,11 @@ lazy val chisel = (project in file(".")).
)
)
+lazy val noPluginTests = (project in file ("no-plugin-tests")).
+ dependsOn(chisel).
+ settings(commonSettings: _*).
+ settings(chiselSettings: _*)
+
lazy val docs = project // new documentation project
.in(file("docs-target")) // important: it must not be docs/
.dependsOn(chisel)