X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=satscons%2FSatSCons.py;h=224591d1d6a95bfed2706ee1172a2fce4ad5e8fb;hb=a8fdb0af3bf0de5fafb0b1f40496ce221d834b26;hp=2d415983e4582fb0241dec7676c3ec1303052e8a;hpb=a667cc8cfcfd254b7a9cc8a43f7c6aa1dcc7ed69;p=senf.git diff --git a/satscons/SatSCons.py b/satscons/SatSCons.py index 2d41598..224591d 100644 --- a/satscons/SatSCons.py +++ b/satscons/SatSCons.py @@ -139,14 +139,15 @@ def Objects(env, sources, testSources = None, LIBS = []): return objects -def Doxygen(env, sources, testSources = None): +def Doxygen(env, sources, testSources = None, target='doc', image = []): if type(sources) == type(()): testSources = sources[1] sources = sources[0] doc = env.Doxygen( - target = 'doc', - source = sources ) + target = target, + source = sources, + image = image) env.Alias('all_docs', doc) return doc