- upgrade the configuration to a current version - provide a frontpage with cross-links to other documentation - define a set of modules; relevant classes and files can be added to these, to create a exploration path for new readers - fix a lot of errors in documentation comments - use a custom configuration for the documentation pages - tweak the navigation, the sections and further arrangements
16 lines
314 B
Python
16 lines
314 B
Python
# -*- python -*-
|
|
##
|
|
## SConscript - SCons buildscript for Documentation
|
|
##
|
|
|
|
|
|
Import('env')
|
|
|
|
|
|
doxydoc = env.Doxygen('devel/Doxyfile')
|
|
|
|
# env.Install(dir = '$DESTDIR/share/doc/lumiera$VERSION/devel', source=documentation)
|
|
env.Clean (doxydoc, doxydoc + ['devel/,doxylog','devel/warnings.txt'])
|
|
|
|
|
|
Export('doxydoc')
|