summaryrefslogtreecommitdiffstats
path: root/source3/librpc/idl/wscript_build
blob: 5a8dc31980b679fa3a751280382cde65c6e47f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

import os

topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')

bld.SAMBA_PIDL_LIST('PIDL',
                    '''messaging.idl libnetapi.idl notify.idl
                       perfcount.idl secrets.idl libnet_join.idl server_id.idl''',
                    options='--includedir=%s --header --ndr-parser' % topinclude,
                    output_dir='../gen_ndr')

bld.SAMBA_PIDL_LIST('PIDL',
                    'wbint.idl',
                    options='--includedir=%s --header --ndr-parser --samba3-ndr-server --client' % topinclude,
                    output_dir='../gen_ndr')