1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/lib/cmdline/wscript
Andreas Schneider 6c81250565 lib:cmdline: Add client credentials
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2021-04-28 03:43:34 +00:00

25 lines
674 B
Python

#!/usr/bin/env python
import os
import sys
from waflib import Logs
def build(bld):
bld.SAMBA_LIBRARY('cmdline',
source='cmdline.c',
deps='''
talloc
samba-hostconfig
samba-credentials
popt
''',
private_library=True)
bld.SAMBA_SUBSYSTEM('CMDLINE_S3',
source='cmdline_s3.c',
deps='cmdline')
bld.SAMBA_SUBSYSTEM('CMDLINE_S4',
source='cmdline_s4.c',
deps='cmdline')