diff options
| author | Jack Koenig | 2021-02-09 17:12:37 -0800 |
|---|---|---|
| committer | Jack Koenig | 2021-02-09 17:28:07 -0800 |
| commit | 53b620478ddab1faa96512e473fa198f7f1fcf50 (patch) | |
| tree | 3cfa0415cc3b8a3f9c382095fd15ceda3f6f179e /build.sbt | |
| parent | 2ed343e2305b7c22000f3f46fa81d73a369907eb (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.sbt | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) |
