build: Do not install testing binaries
[Samba/gebeck_regimport.git] / source3 / lib / pthreadpool / wscript_build
blobbdd5f53dcf741737ae410f563a198b5a784addac
1 #!/usr/bin/env python
3 if bld.env.WITH_PTHREADPOOL:
4 bld.SAMBA3_SUBSYSTEM('PTHREADPOOL',
5 source='pthreadpool.c',
6 deps='pthread rt replace')
7 else:
8 bld.SAMBA3_SUBSYSTEM('PTHREADPOOL',
9 source='pthreadpool_sync.c',
10 deps='replace')
13 bld.SAMBA3_BINARY('pthreadpooltest',
14 source='tests.c',
15 deps='PTHREADPOOL',
16 enabled=bld.env.WITH_PTHREADPOOL,
17 install=False)