1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/source3/libsmb/wscript
Puran Chand 3904c26ac8 Added smbc_SetConfiguration which lets the user set the smb.conf for libsmbclient code
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13229

Signed-off-by: Puran Chand <pchand@vmware.com>
Reviewed-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2018-01-21 07:08:23 +01:00

32 lines
1.2 KiB
Python

#!/usr/bin/env python
import Options, Logs
def build(bld):
bld.SAMBA3_LIBRARY('smbclient',
source='''
libsmb_cache.c
libsmb_compat.c
libsmb_context.c
libsmb_dir.c
libsmb_file.c
libsmb_misc.c
libsmb_path.c
libsmb_printjob.c
libsmb_server.c
libsmb_stat.c
libsmb_xattr.c
libsmb_setget.c''',
public_deps='''
talloc
smbconf
libsmb
KRBCLIENT
msrpc3
libcli_lsa3''',
public_headers='../include/libsmbclient.h',
abi_directory='ABI',
abi_match='smbc_*',
vnum='0.3.2',
pc_files='smbclient.pc')