X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSConscript;h=67b1bdc2945a83e0affb9b7c4fb22e97ab728083;hb=bf1d8ba5ce6fc6a169a938183f8d01c8bdbccf32;hp=aef098c228950c712f2deaf1ef1c3e8d7afc0ded;hpb=81ffa1c459b96dd44472bcef37e1e373934ee138;p=senf.git diff --git a/Socket/SConscript b/Socket/SConscript index aef098c..67b1bdc 100644 --- a/Socket/SConscript +++ b/Socket/SConscript @@ -1,11 +1,13 @@ # -*- python -*- Import('env') -import SENFSCons -import glob +import SENFSCons, glob ########################################################################### +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') ]) + sources, testSources = SENFSCons.GlobSources() SENFSCons.StandardTargets(env) @@ -19,7 +21,7 @@ SENFSCons.Lib(env, library = 'Socket', sources = sources + subob, testSources = testSources, - LIBS = [ 'Utils' ]) + LIBS = [ 'Scheduler', 'Utils' ]) SENFSCons.Doxygen(env, extra_sources = [ env.Dia2Png('SocketLibrary-classes.dia'), @@ -29,3 +31,4 @@ SENFSCons.Doxygen(env, extra_sources = [ env.Dia2Png('Handle.dia'), ]) +SENFSCons.InstallIncludeFiles(env, [ 'Socket.hh', 'all_includes.hh' ])