X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=site_scons%2FSENFSCons.py;h=4857fe16a07b0ae0cd7dd22c6a292b2037228487;hb=75e3ce2a5296d017a459c098c40c31ae799d0823;hp=6c4bdb3d6f23b3848e9f10d0f426e45ceca189de;hpb=81bca7eaa075738ba2f2b7c36efaced331677836;p=senf.git diff --git a/site_scons/SENFSCons.py b/site_scons/SENFSCons.py index 6c4bdb3..4857fe1 100644 --- a/site_scons/SENFSCons.py +++ b/site_scons/SENFSCons.py @@ -46,7 +46,7 @@ def Doxygen(env, doxyfile = "Doxyfile", extra_sources = []): 'html' : 'NO', 'generate_tagfile': 'doc/${MODULE}.tag' }, MODULE = module ) - env.Append(ALL_TAGFILES = tagfile[0].abspath) + env.Append(ALL_TAGFILES = [ tagfile[0].abspath ]) env.Depends(tagfile, [ env.File('#/doclib/doxygen.sh'), env.File('#/doclib/tag-munge.xsl') ]) @@ -71,8 +71,7 @@ def Doxygen(env, doxyfile = "Doxyfile", extra_sources = []): env.Depends(doc, env.CopyToDir(doc[0].dir, extra_sources)) # Install documentation into DOCINSTALLDIR - l = len(env.Dir('#').abspath) - env.Install(env.Dir('$DOCINSTALLDIR').Dir(doc[0].dir.get_path('#')), doc[0].dir) + env.Install(env.Dir('$DOCINSTALLDIR').Dir(doc[0].dir.dir.get_path(env.Dir('#'))), doc[0].dir) # Useful aliases env.Alias('all_docs', doc) @@ -90,3 +89,41 @@ def AllIncludesHH(env, exclude=[]): file(target.abspath,"w").write("".join([ '#include "%s"\n' % f for f in headers ])) env.Clean('all', target) + +########################################################################### +# The following functions serve as simple macros for most SConscript files +# +# If you need to customize these rules, copy-and-paste the code into the +# SConscript file and adjust at will (don't forget to replace the +# parameters with their actual value. Parameters are marked with ((name)) ) + +def AutoRules(env, exclude=[], subdirs=[], doc_extra_sources = []): + import SENFSCons, glob, os.path + + sources, tests, includes = SENFSCons.Glob(env, exclude=((exclude)), subdirs=((subdirs)) ) + subscripts = glob.glob("*/SConscript") + + if sources : env.Append(ALLOBJECTS = env.Object(sources)) + if tests : env.BoostUnitTest('test', tests) + if includes : env.InstallSubdir('$INCLUDEINSTALLDIR', includes) + if os.path.exists("Doxyfile") : SENFSCons.Doxygen(env, extra_sources=((doc_extra_sources)) ) + if subscripts : SConscript(glob.glob("*/SConscript")) + + +def AutoPacketBundle(env, name, exclude=[], subdirs=[], doc_extra_sources=[]): + import SENFSCons, glob, os.path + + sources, tests, includes = SENFSCons.Glob(env, exclude=((exclude)), subdirs=((subdirs)) ) + subscripts = glob.glob("*/SConscript") + + objects = env.Object(sources) + cobject = env.CombinedObject('${LOCALLIBDIR}/${NAME}', objects, NAME=((name))) + + env.Default(cobject) + env.Append(ALLOBJECTS = objects, PACKET_BUNDLES = cobject) + env.Install('$OBJINSTALLDIR', cobject) + + if tests : env.BoostUnitTest('test', tests + cobject) + if includes : env.InstallSubdir('$INCLUDEINSTALLDIR', includes) + if os.path.exists("Doxyfile") : SENFSCons.Doxygen(env, extra_sources=((doc_extra_sources)) ) + if subscripts : SConscript(glob.glob("*/SConscript"))