1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-07 17:18:11 +03:00
samba-mirror/libcli/ldap/wscript_build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
600 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
bld.SAMBA_LIBRARY('cli-ldap-common',
source='ldap_message.c ldap_ndr.c',
public_deps='samba-errors talloc ldb',
private_headers='ldap_message.h ldap_errors.h ldap_ndr.h',
deps='samba-util asn1util NDR_SECURITY tevent',
private_library=True)
bld.SAMBA_BINARY(
'test_ldap_message',
source='tests/ldap_message_test.c',
deps='''
cmocka
talloc
ldb
samba-util
asn1util
NDR_SECURITY
cli-ldap
''',
for_selftest=True
)