Console: Add console logging documentation
[senf.git] / Console / SConscript
1 # -*- python -*-
2
3 Import('env')
4 import SENFSCons
5
6 ###########################################################################
7
8 sources = SENFSCons.GlobSources( exclude = [ 'testServer.cc' ] )
9 SENFSCons.StandardTargets(env)
10
11 SENFSCons.Lib(env,
12               library = 'Console',
13               sources = sources,
14               LIBS = [ 'Socket', 'Scheduler', 'Utils' ])
15
16 SENFSCons.Binary(env, 'testServer',
17                  sources = [ 'testServer.cc' ],
18                  no_includes = True,
19                  LIBS = [ 'Console', 'Socket', 'Scheduler', 'Utils' ])
20
21 SENFSCons.Doxygen(env)