X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FSConscript;h=a39e7f6c9f983460285920b4da72aca200ebb7d0;hb=067a3eb8b81aeac439116d1c556e16bdc05f54eb;hp=81cb37c6bbe7c49d98776743ebe3314dcde2a561;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Utils/SConscript b/Utils/SConscript index 81cb37c..a39e7f6 100644 --- a/Utils/SConscript +++ b/Utils/SConscript @@ -1,7 +1,29 @@ +# -*- python -*- + Import('env') -import SatSCons +import SENFSCons, glob, os.path ########################################################################### -SatSCons.StandardTargets(env) -SatSCons.Lib(env, 'Utils', SatSCons.GlobSources()) +SENFSCons.StandardTargets(env) + +# OUCH ... another hack to work around a scons bug ... +if not os.path.exists("Logger/all_includes.hh"): + Execute(Touch("Logger/all_includes.hh")) + +sources, testSources = SENFSCons.GlobSources() +objects = SENFSCons.Objects( env, sources = sources, testSources=testSources ) + +for sc in glob.glob("*/SConscript"): + ob = SConscript(sc) + if ob : objects.extend(ob) + +lib = SENFSCons.Lib(env, + library = 'Utils', + sources = objects, + no_includes = True) + +SENFSCons.InstallSourceIncludes(env, Flatten([ lib, '.test.bin', 'Logger/.test.bin' ])) + +SENFSCons.Doxygen(env) +SENFSCons.InstallIncludeFiles(env, [ 'Logger.hh', 'Daemon.hh' ])