X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSConscript;h=9b0870f9a2e2c37c0cb17360ea5609ef6a20d999;hb=5443435c4c2b6e4386c5334b5b8358273f2bae93;hp=56ae5d479ccd32e8bb08a6894f4b6784d25a0086;hpb=e069f918a83434f6f6fe6656013340f2ec2492c4;p=senf.git diff --git a/Socket/SConscript b/Socket/SConscript index 56ae5d4..9b0870f 100644 --- a/Socket/SConscript +++ b/Socket/SConscript @@ -1,19 +1,19 @@ # -*- python -*- Import('env') -import SENFSCons +import SENFSCons, glob ########################################################################### -sources = SENFSCons.GlobSources() +SConscript(glob.glob("*/SConscript")) -SENFSCons.StandardTargets(env) +SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh") + if f not in ('all_includes.hh','Socket.hh') and not f.endswith('.test.hh') ]) -SENFSCons.Lib(env, - library = 'Socket', - sources = sources, - LIBS = [ 'Utils' ]) +sources, includes = SENFSCons.Glob(env) +SENFSCons.StandardTargets(env) +SENFSCons.Lib(env, sources = sources) SENFSCons.Doxygen(env, extra_sources = [ env.Dia2Png('SocketLibrary-classes.dia'), env.Dia2Png('FhHierarchy.dia'), @@ -21,3 +21,4 @@ SENFSCons.Doxygen(env, extra_sources = [ env.Dia2Png('Protocols.dia'), env.Dia2Png('Handle.dia'), ]) +SENFSCons.InstallIncludeFiles(env, includes)