mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
f4ab082d2b
Change-Id: Iba3913d5a1c7f851b93f37e9beb6dbb20fbf7e55 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
13 lines
448 B
Python
13 lines
448 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
source='''irpc.idl ntp_signd.idl
|
|
opendb.idl sasl_helpers.idl
|
|
winsif.idl winsrepl.idl winstation.idl''',
|
|
options="--includedir=%s --header --ndr-parser --client --python --server" % topinclude,
|
|
output_dir='../gen_ndr')
|