summaryrefslogtreecommitdiffstats
path: root/source4/librpc/idl/wscript_build
blob: 58555e6bf55f70b52d6cf7d94474e33e9c8859c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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')