Merge pull request #40 from antmicro/symbolator

Generate symbols for all sim.v models
This commit is contained in:
Tomasz Michalak 2019-10-21 21:52:27 +02:00 committed by GitHub
commit 8ad3b586ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 1 deletions

View File

@ -6,6 +6,9 @@ channels:
dependencies: dependencies:
- doxygen - doxygen
- cmake - cmake
- pygobject
- cairo
- pango
- pip - pip
- pip: - pip:
- -r file:requirements.txt - -r file:requirements.txt

View File

@ -2,3 +2,4 @@ Sphinx==2.0.0
git+http://github.com/SymbiFlow/sphinx_materialdesign_theme.git@master#egg=sphinx_symbiflow_theme git+http://github.com/SymbiFlow/sphinx_materialdesign_theme.git@master#egg=sphinx_symbiflow_theme
sphinx-markdown-tables sphinx-markdown-tables
breathe==4.13.1 breathe==4.13.1
symbolator==1.0.2

View File

@ -25,7 +25,8 @@ needs_sphinx = '1.6'
extensions = [ extensions = [
'sphinx.ext.todo', 'sphinx.ext.todo',
'sphinx.ext.imgmath', # breathe 'sphinx.ext.imgmath', # breathe
'breathe' 'breathe',
'symbolator_sphinx',
] ]
numfig = True numfig = True
@ -318,4 +319,8 @@ breathe_projects = {
"prjxray" : "../build/doxygen/prjxray/xml", "prjxray" : "../build/doxygen/prjxray/xml",
} }
### SYMBOLATOR ###
symbolator_cmd_args = ['--transparent']
symbolator_output_format = 'svg'