X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=satscons%2FSatSCons.py;h=b14b2ac78a2d38216a34e74a02a52a2f115bc5b3;hb=7aac6125d22bca61c277b334e9b9f6c1357b9266;hp=12eb6cfa9632e08e1854bda892ab09d4f99e106e;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/satscons/SatSCons.py b/satscons/SatSCons.py index 12eb6cf..b14b2ac 100644 --- a/satscons/SatSCons.py +++ b/satscons/SatSCons.py @@ -126,7 +126,7 @@ def Objects(env, sources, testSources = None, LIBS = []): if testSources: test = env.BoostUnitTests( - target = 'test.log', + target = 'test', source = sources, test_source = testSources, LIBS = LIBS, @@ -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, image = []): if type(sources) == type(()): testSources = sources[1] sources = sources[0] doc = env.Doxygen( target = 'doc', - source = sources ) + source = sources, + image = image) env.Alias('all_docs', doc) return doc