X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=satscons%2FSatSCons.py;h=783500c1f5e4675c3cd77766eb9b749cce6b8b61;hb=b2d64a4084a053f0887c7845bb81074e0cd3a855;hp=b14b2ac78a2d38216a34e74a02a52a2f115bc5b3;hpb=7aac6125d22bca61c277b334e9b9f6c1357b9266;p=senf.git diff --git a/satscons/SatSCons.py b/satscons/SatSCons.py index b14b2ac..783500c 100644 --- a/satscons/SatSCons.py +++ b/satscons/SatSCons.py @@ -94,9 +94,9 @@ def MakeEnvironment(): #return conf.Finish() return env -def GlobSources(): +def GlobSources(exclude=[]): testSources = glob.glob("*.test.cc") - sources = [ x for x in glob.glob("*.cc") if x not in testSources ] + sources = [ x for x in glob.glob("*.cc") if x not in testSources and x not in exclude ] return (sources, testSources) def StandardTargets(env): @@ -139,13 +139,13 @@ def Objects(env, sources, testSources = None, LIBS = []): return objects -def Doxygen(env, sources, testSources = None, image = []): +def Doxygen(env, sources, testSources = None, target='doc', image = []): if type(sources) == type(()): testSources = sources[1] sources = sources[0] doc = env.Doxygen( - target = 'doc', + target = target, source = sources, image = image)