Dia2Png Doxygen started
[senf.git] / satscons / SatSCons.py
index 2d41598..224591d 100644 (file)
@@ -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