mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
12 lines
317 B
Python
12 lines
317 B
Python
from buildutils import *
|
|
|
|
Import('env', 'build', 'install')
|
|
|
|
localenv = env.Clone()
|
|
|
|
build(localenv.Command('#build/docs/html/index.html',
|
|
'doxygen/Doxyfile', 'doxygen $SOURCE'))
|
|
|
|
install(pjoin('$inst_docdir', 'html'),
|
|
mglob(localenv, '#/build/docs/html', 'html', 'svg', 'css', 'png'))
|