1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/examples/libsmbclient/wscript_build
Volker Lendecke 8a58a48f86 libsmb: Implement smbc_notify
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Fri Jul 10 09:35:13 CEST 2015 on sn-devel-104
2015-07-10 09:35:13 +02:00

27 lines
592 B
Python

#!/usr/bin/env python
names = ['testsmbc',
'testacl',
'testacl2',
'testacl3',
'testbrowse',
'testbrowse2',
'testnotify',
'teststat',
'teststat2',
'teststat3',
'teststatvfs',
'testfstatvfs',
'testtruncate',
'testchmod',
'testutime',
'testread',
'testwrite',
'testctx']
for name in names:
bld.SAMBA_BINARY(name,
source='%s.c' % name,
deps='popt smbclient',
install=False)