mirror of
https://github.com/samba-team/samba.git
synced 2025-06-21 03:17:08 +03:00
Change-Id: Iba3913d5a1c7f851b93f37e9beb6dbb20fbf7e55 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
14 lines
442 B
Python
14 lines
442 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''messaging.idl libnetapi.idl open_files.idl
|
|
perfcount.idl secrets.idl libnet_join.idl
|
|
smbXsrv.idl
|
|
''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr')
|