11 lines
317 B
Python
11 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'))
|