14 lines
451 B
Python
14 lines
451 B
Python
from buildutils import *
|
|
|
|
Import('env', 'buildTargets', 'installTargets')
|
|
|
|
localenv = env.Clone()
|
|
|
|
build = localenv.Command('#build/docs/html/index.html',
|
|
'doxygen/Doxyfile', 'doxygen $SOURCE')
|
|
buildTargets.extend(build)
|
|
|
|
inst = localenv.Install(pjoin('$inst_docdir', 'html'),
|
|
mglob(localenv, '#/build/docs/html',
|
|
'html', 'svg', 'css', 'png'))
|
|
installTargets.extend(inst)
|