X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FSConscript;h=e07dec065691b15aa77517af3561e62f3ca9982d;hb=fd3a0e8ac95d1158e9ea661ddf9187b67c70169f;hp=81cb37c6bbe7c49d98776743ebe3314dcde2a561;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Utils/SConscript b/Utils/SConscript index 81cb37c..e07dec0 100644 --- a/Utils/SConscript +++ b/Utils/SConscript @@ -1,7 +1,15 @@ +# -*- python -*- + Import('env') -import SatSCons +import SENFSCons, glob, os.path ########################################################################### -SatSCons.StandardTargets(env) -SatSCons.Lib(env, 'Utils', SatSCons.GlobSources()) +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"))