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