1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-23 11:17:06 +03:00
samba-mirror/source4/lib/wmi/wscript_build
Andrew Tridgell 211bf1ea17 s4-waf: removed the unused installdir= option to SAMBA_BINARY()
This was left over from the automatic conversion of the config.mk
files
2010-04-18 21:47:00 +10:00

27 lines
529 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',
deps='POPT_SAMBA POPT_CREDENTIALS popt WMI'
)
bld.SAMBA_BINARY('wmis',
source='tools/wmis.c',
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'
)