1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00
samba-mirror/source4/lib/wmi/wscript_build
Andrew Tridgell b690fedef5 s4-waf: removed the AUTOGENERATED markers
we won't be using the mk -> wscript generator again
2010-04-06 20:27:16 +10:00

29 lines
573 B
Python

#!/usr/bin/env python
bld.SAMBA_SUBSYSTEM('WMI',
source='wmicore.c wbemdata.c ../../../librpc/gen_ndr/dcom_p.c',
public_deps='RPC_NDR_OXIDRESOLVER NDR_DCOM RPC_NDR_REMACT NDR_TABLE DCOM_PROXY_DCOM DCOM'
)
bld.SAMBA_BINARY('wmic',
source='tools/wmic.c',
installdir='BINDIR',
deps='POPT_SAMBA POPT_CREDENTIALS popt WMI'
)
bld.SAMBA_BINARY('wmis',
source='tools/wmis.c',
installdir='BINDIR',
deps='POPT_SAMBA POPT_CREDENTIALS popt WMI'
)
bld.SAMBA_PYTHON('pywmi',
source='wmi_wrap.c',
public_deps='LIBCLI_SMB LIBNDR LIBSAMBA-UTIL LIBSAMBA-CONFIG WMI'
)