The new version indeed works as expected, and current Doxygen produces much better cross links :-)
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')
|