X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FSConscript;h=e07dec065691b15aa77517af3561e62f3ca9982d;hb=3863d46dd898b7bc35ea8c6ccd8563b18762a6b6;hp=baa117a22748ff116e0499fd2270a1e13542c0b3;hpb=9f894848419a22a6a50e6c5ce253f436d164dcd3;p=senf.git diff --git a/Utils/SConscript b/Utils/SConscript index baa117a..e07dec0 100644 --- a/Utils/SConscript +++ b/Utils/SConscript @@ -1,11 +1,15 @@ # -*- python -*- Import('env') -import SENFSCons +import SENFSCons, glob, os.path ########################################################################### -sources = SENFSCons.GlobSources() +sources, includes = SENFSCons.Glob(env, subdirs=[ 'impl' ]) + SENFSCons.StandardTargets(env) -SENFSCons.Lib(env, 'Utils', sources) +SENFSCons.Lib(env, sources) SENFSCons.Doxygen(env) +SENFSCons.InstallIncludeFiles(env, includes) + +SConscript(glob.glob("*/SConscript"))