diff options
Diffstat (limited to 'lib/tsocket/wscript_build')
-rw-r--r-- | lib/tsocket/wscript_build | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/tsocket/wscript_build b/lib/tsocket/wscript_build new file mode 100644 index 0000000..73adcb9 --- /dev/null +++ b/lib/tsocket/wscript_build @@ -0,0 +1,21 @@ +#!/usr/bin/env python + + +bld.SAMBA_SUBSYSTEM('LIBTSOCKET', + source='tsocket.c tsocket_helpers.c tsocket_bsd.c', + public_deps='talloc tevent iov_buf socket-blocking', + public_headers='tsocket.h tsocket_internal.h', + ) + +bld.SAMBA_BINARY('test_tsocket_bsd_addr', + source='tests/test_bsd_addr.c', + deps='cmocka replace LIBTSOCKET', + local_include=False, + for_selftest=True) + +bld.SAMBA_BINARY('test_tstream', + source='tests/test_tstream.c tests/socketpair_tcp.c', + deps='cmocka replace LIBTSOCKET', + local_include=False, + for_selftest=True) + |