add 'exclude' Argument to GlobSources
g0dil [Fri, 10 Nov 2006 23:07:11 +0000 (23:07 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@151 270642c3-0616-0410-b53a-bc976706d245

satscons/SatSCons.py

index 224591d..783500c 100644 (file)
@@ -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):