mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
ad9a81c6a9
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Wed Dec 18 08:05:05 UTC 2019 on sn-devel-184
18 lines
600 B
Python
18 lines
600 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
source='''ntp_signd.idl
|
|
opendb.idl sasl_helpers.idl
|
|
winsif.idl winsrepl.idl''',
|
|
options="--includedir=%s --header --ndr-parser" % topinclude,
|
|
output_dir='../gen_ndr')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
source='''irpc.idl''',
|
|
options="--includedir=%s --header --ndr-parser --client --python" % topinclude,
|
|
output_dir='../gen_ndr')
|