mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
25 lines
428 B
Plaintext
25 lines
428 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
bld.SAMBA_SUBSYSTEM(
|
||
|
'audit_logging',
|
||
|
deps='''MESSAGING_SEND
|
||
|
jansson
|
||
|
samba-debug
|
||
|
LIBTSOCKET''',
|
||
|
source='audit_logging.c'
|
||
|
)
|
||
|
|
||
|
bld.SAMBA_BINARY(
|
||
|
'audit_logging_test',
|
||
|
source='tests/audit_logging_test.c',
|
||
|
deps='''
|
||
|
audit_logging
|
||
|
jansson
|
||
|
cmocka
|
||
|
talloc
|
||
|
samba-util
|
||
|
LIBTSOCKET
|
||
|
''',
|
||
|
install=False
|
||
|
)
|