git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@151
270642c3-0616-0410-b53a-bc976706d245
#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):