eb0f44f4da50811b2d4135189c8665ceda709523
[abartlet/samba.git/.git] / source4 / web_server / wscript_build
1 #!/usr/bin/env python
2
3
4 bld.SAMBA_SUBSYSTEM('WEB_WSGI',
5                 source='wsgi.c',
6                 pyext=True,
7                 deps='talloc LIBTSOCKET',
8                 )
9
10
11 bld.SAMBA_MODULE('WEB',
12                 source='web_server.c',
13                 autoproto='proto.h',
14                 autoproto_extra_source='wsgi.c',
15                 subsystem='service',
16                 init_function='server_service_web_init',
17                 deps='LIBTLS smbcalls process_model LIBPYTHON WEB_WSGI',
18                 pyembed=True,
19                 )