mirror of
https://github.com/chipsalliance/f4pga.git
synced 2025-01-03 03:43:37 -05:00
Merge pull request #40 from antmicro/symbolator
Generate symbols for all sim.v models
This commit is contained in:
commit
8ad3b586ab
3 changed files with 10 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue