mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
b690fedef5
we won't be using the mk -> wscript generator again
29 lines
573 B
Python
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'
|
|
)
|
|
|