X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FSConscript;h=a39e7f6c9f983460285920b4da72aca200ebb7d0;hb=412024ed31a4ab4eaea7a4165a434f8efebee325;hp=1819533cfc7b390705447c9181be6a643322ab28;hpb=b41b8147c7a2d40e2f69471e183840be8a0b95da;p=senf.git diff --git a/Utils/SConscript b/Utils/SConscript index 1819533..a39e7f6 100644 --- a/Utils/SConscript +++ b/Utils/SConscript @@ -1,12 +1,16 @@ # -*- python -*- Import('env') -import SENFSCons, glob +import SENFSCons, glob, os.path ########################################################################### 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 ) @@ -14,9 +18,12 @@ for sc in glob.glob("*/SConscript"): ob = SConscript(sc) if ob : objects.extend(ob) -SENFSCons.Lib(env, - library = 'Utils', - sources = objects) +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' ])