diff options
| author | Schuyler Eldridge | 2018-08-14 11:37:23 -0400 |
|---|---|---|
| committer | Schuyler Eldridge | 2018-09-07 15:42:21 -0400 |
| commit | be7927eeefde1a4616bc6762fab410931304ec6b (patch) | |
| tree | cd5b6382ba0865984fb7d3774d6f18a746ffa8e7 | |
| parent | 34a650e6f5127ebe11c8ce3ef434ee16c6b25bf9 (diff) | |
Enable ScalaDoc groups, ignore chisel3.internal
This adds the `-groups` option to `scalacOptions`. This makes ScalaDoc
build with group support such that developers can group methods using the
`@group <groupName>` tag.
This also adds the `-skip-packages chisel3.internal` option. This makes
ScalaDoc build while ignoring everything in the chisel3.internal package.
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
| -rw-r--r-- | build.sbt | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -140,6 +140,8 @@ lazy val chisel = (project in file(".")). scalacOptions in Test ++= Seq("-language:reflectiveCalls"), scalacOptions in Compile in doc ++= Seq( "-diagrams", + "-groups", + "-skip-packages", "chisel3.internal", "-diagrams-max-classes", "25", "-doc-version", version.value, "-doc-title", name.value, |
