source: vendor/current/source3/librpc/idl/wscript_build@ 740

Last change on this file since 740 was 740, checked in by Silvan Scherrer, 12 years ago

Samba Server: update vendor to 3.6.0

File size: 630 bytes
RevLine 
[740]1#!/usr/bin/env python
2
3import os
4
5topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
6
7bld.SAMBA_PIDL_LIST('PIDL',
8 '''messaging.idl libnetapi.idl notify.idl
9 perfcount.idl secrets.idl libnet_join.idl server_id.idl''',
10 options='--includedir=%s --header --ndr-parser' % topinclude,
11 output_dir='../gen_ndr')
12
13bld.SAMBA_PIDL_LIST('PIDL',
14 'wbint.idl',
15 options='--includedir=%s --header --ndr-parser --samba3-ndr-server --client' % topinclude,
16 output_dir='../gen_ndr')
Note: See TracBrowser for help on using the repository browser.