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

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

27 lines
679 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
from waflib import Options
def configure(conf):
conf.CHECK_FUNCS('strsignal')
conf.CHECK_FUNCS('longjmp siglongjmp')
if conf.CHECK_CMOCKA():
conf.define('USING_SYSTEM_CMOCKA', 1)
def build(bld):
if bld.CONFIG_SET('USING_SYSTEM_CMOCKA'):
return
extra_libs=''
# Link to librt if needed for clock_gettime()
if bld.CONFIG_SET('HAVE_LIBRT'): extra_libs += ' rt'
bld.SAMBA_LIBRARY('cmocka',
source='cmocka.c',
cflags='-DHAVE_CONFIG_H=1',
deps=extra_libs,
allow_warnings=True,
private_library=True)