1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source4/lib/cmdline/wscript_build

24 lines
628 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
bld.SAMBA_LIBRARY('cmdline-credentials',
source='credentials.c',
autoproto='credentials.h',
public_deps='samba-credentials popt',
deps='samba-util',
private_library=True)
bld.SAMBA_SUBSYSTEM('POPT_SAMBA',
source='popt_common.c',
public_deps='popt',
header_path='samba',
deps='talloc samba-hostconfig'
)
bld.SAMBA_SUBSYSTEM('POPT_CREDENTIALS',
source='popt_credentials.c',
autoproto='popt_credentials.h',
public_deps='samba-credentials CREDENTIALS_SECRETS cmdline-credentials popt',
deps='samba-util'
)